我正在开发一个WordPress插件,我试图将一个变量从ajax传递到一个php文件。这两个文件都在我的插件文件夹中。 js文件正在运行,但是当我触发ajax函数时,似乎没有发送帖子。
插件结构:
-plugin folder
- ajax.js
- 文件夹/使用example.php
这是我的ajax.js
// using jQuery ajax
// send the text with PHP
$.ajax({
type: "POST",
url: "/absoluteurlpluginfolder/folder/example.php",
data: {
'action': 'my_action',
'whatever': 1234
},
// dataType: "text",
success: function(data){
console.log('Connection success.');
// console.log(data);
}
});
这是我的example.php
add_action( 'wp_ajax_my_action', 'my_action' );
function my_action() {
global $wpdb; // this is how you get access to the database
$whatever = intval( $_POST['whatever'] );
$whatever += 10;
alert($whatever);
wp_die(); // this is required to terminate immediately and return a proper response
}
我有两个问题:
答案 0 :(得分:0)
你见过this page吗?这是最好的教程。但你错过了一些事情:
您应该使用wp_localize_script()
函数设置全局js变量。像
wp_localize_script( 'ajax-script', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'we_value' => 1234 ) );
将JS中的网址替换为ajax_object.ajax_url
。
如果您想使用wp_ajax
挂钩工作ajax,您应该发送所有请求wp-admin/admin-ajax.php
。您可以通过admin_url('admin-ajax.php');
获取此网址。
答案 1 :(得分:0)
我认为主要问题是我需要添加" wp_enqueue_script"和" wp_localize_script"。但是,我正在开发WordPress中的 TinyMCE 插件。
这意味着虽然JS文件已经包含,但是当我添加" wp_enqueue_script"和" wp_localize_script"。为什么?我不知道,但奇怪的是我让它与另一条线路一起工作。
wp_register_script( 'linked-plugin-script', null);
我尝试过不同的版本,最低限度的工作就是上面这个。我可以把URL,版本,jquery依赖和false或true。所有这些都有效。
所以最后这是我的代码并且正在运行。 这是plugin.php
// Include the JS for TinyMCE
function linked_tinymce_plugin( $plugin_array ) {
$plugin_array['linked'] = plugins_url( '/public/js/tinymce/plugins/linked/plugin.js',__FILE__ );
return $plugin_array;
}
// Add the button key for address via JS
function linked_tinymce_button( $buttons ) {
array_push( $buttons, 'linked_button_key' );
return $buttons;
}
// Enqueue the plugin to manage data via AJAX
add_action( 'admin_enqueue_scripts', 'my_enqueue' );
function my_enqueue() {
wp_register_script( 'linked-plugin-script', null);
wp_enqueue_script( 'linked-plugin-script');
// in JavaScript, object properties are accessed as ajax_object.ajax_url, ajax_object.we_value
wp_localize_script( 'linked-plugin-script', 'ajax_object', array(
'ajax_url' => admin_url( 'admin-ajax.php' ),
'whatever' => '' )
);
}
// Same handler function...
add_action( 'wp_ajax_my_action', 'my_action' );
function my_action() {
global $wpdb;
$whatever = strtoupper($_POST['whatever']);
echo $whatever;
wp_die();
}
这是JavaScript中TinyMCE的插件
// JavaScript file for TinyMCE Linked Plugin
//
//
//
( function() {
tinymce.PluginManager.add( 'linked', function( editor, url ) {
// Add a button that opens a window
editor.addButton( 'linked_button_key', {
// Button name and icon
text: 'Semantic Notation',
icon: false,
// Button fnctionality
onclick: function() {
// get raw text to variable content
var content = tinymce.activeEditor.getContent({format: 'text'});
// using jQuery ajax
// send the text to textrazor API with PHP
$.ajax({
type: 'POST',
url: ajax_object.ajax_url,
data: { 'action': 'my_action',
'whatever': ajax_object.whatever = content
},
beforeSend: function() {
console.log('before send..');
},
success: function(response){
console.log('Success the result is '+response);
}
});
} // onclick function
} ); // TinyMCE button
} ); // tinymce.PluginManager
} )(); // function