這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

AJAX Manufactory

外掛說明

Whenever you plan to begin developing applications on WordPress using AJAX technology, you have to solve a number of
minor issues unrelated to the logic of your application:

  • How to package and transmit data from the browser to the server, so they will not have been distorted?
  • How to transfer data, if they are multi-dimensional array?
  • How to implement a custom processing of AJAX response in case, again, it represents a complex set of data (a typical
    example – form sending and on-server validation)?
  • How to handle data transition errors?
  • How to debug all this stuff?

Usually these issues generates a lot of spaghetti code, moreover, each new request type requires some customization of
code. Managing all of this, you forget about the function that you would like to implement.

AJAX Manufactory plugin for WordPress have most of these tasks already solved. You can think about functionality and
business logic instead.

What you can have from the box:

  • A simple function at the client side which allows to send any your complex data from javascript to WordPress server
    side.
  • An AJAX response wrapper at the server side which gives to you sent data as PHP array and allows you to create
    an AJAX response as a set of simple “commands” like “make an alert”, “set up javascript variable”, “put html text to
    specific html node(s)”, “execute a javascript function”, “go to specific URL” etc.
  • Automatic execution of “commands” queue at the client side. Additionally you can specify your own callback.

Documentation

Please refer Documentation.

安裝方式

  1. Unpack and upload ajax-manufactory folder with all files to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

常見問題集

Where can I put some notices, comments or bugreports?

Do not hesistate to write to us at Contact Us page.

使用者評論

2017 年 2 月 10 日
I found this plugin to be very exasperating, because the only documentation it has is how to install it. There is NOTHING on how to actually use it. One BIG thumb down.
2016 年 9 月 3 日
Very elegant solution. Working with a lot of ajax was pretty boring, but now it's not. Thank you!
2016 年 9 月 3 日
I found this plugin when I was trying to develop ajax content update with built in wordpress tools. Mostly syntax is pretty straightforward and self explanatory. Tricky part is when you need to pass variables back to page. Luckily plugin developer appeared very nice person and pointed me how to use plugin nice and easy. Now here's the trick: Say, we want send two variables to php side, process that data and show alert only for birds. Note: you can change "myaction" to whatever you like. On html side we embed javaScript: jxAction('myaction', {'variable_name': 'apples','another_variable': 'penguins'}, function(v){ alert(v['birds']); }); On php side in functions.php we add action hook: add_action('jx_myaction', function($jx){ $data = $jx->data; //this is array with our variables $bird = 'penguins'; foreach ( $data as current_var ) { // here we write desired values to array that will be returned. if ( $current_var == $bird ) $jx->variable('birds', $fname); } }); That's pretty much it. p.s. IMPORTANT! In case of error on php side, you might get "Wrong jx JSON response (not JSON)" message. Then you should check webserver logs for errors. My recommendations, five stars.
2016 年 9 月 3 日
Putting "interface part" out of your mind, you can always concentrate on the logic itself. It is increasing programming productivity and lower human errors.
閱讀全部 5 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈AJAX Manufactory〉的開發相關工作。

參與者

將〈AJAX Manufactory〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.7.11

  • Changed name back (it was prohibited)

1.7.10

  • Changed name
  • Lots of fixes planned

1.6.5

  • Fixed logos

1.6.4

  • Fixed a bug with ‘data’ parameter of jxAction() function (it become optional)

1.6.3

  • Added new method variables() to set bunch of variables simultaneously
  • Added new method trigger() to trigger jQuery event on the client side (with parameters)

1.6.2

  • Added named global triggers to track AJAX activity: jx_start_, jx_success_, jx_finish_, jx_error_

1.6.1

  • Fix for WP 4.8.1 compatibility

1.6

  • Added global triggers (at document level) to track AJAX activity: jx_start, jx_finish, jx_success, jx_error

1.5.2.6

  • Fixed data collection from forms by jxFormData() method. Especially for checkbox lists and radio lists.

1.5.2.4

  • New method call() was added. Read doc for details.

1.5.2.3

  • Added new flag “has_priv” in JX class

1.5.2.1

  • Fixed version number in core file

1.5.1.1

  • Now working at admin side too

1.5.0.1

  • Some security bugs was fixed.

1.5

  • console() method added
  • redirect() method has been fixed
  • javascript module completely redone.

1.1

  • Full Documentation has been added
  • variable() method added

1.0

  • First WordPress version

0.4

  • html(), redirect(), reload() methods were added.

0.1

  • Initial edition. Only conception is implemented with alert() method on-board.