如果对ajax调用进行索引,则会影响应用程序的整体用途。原因是您使用GET而不是建议的POST拨打电话:https://codex.wordpress.org/AJAX_in_Plugins
正确的方法应该是:
<?php
add_action( \'admin_footer\', \'my_SHOP_javascript\' ); // Write our JS below here
function my_SHOP_javascript() { ?>
<script type="text/javascript" >
jQuery(document).ready(function($) {
var data = {
\'action\': \'shopping_cart\',
\'id\': 16,
\'nonce\': \'12345\',
\'type\' : \'add\'
};
jQuery.post(ajaxurl, data, function(response) {
//YOUR CODE AFTER SUCCESS
});
});
</script> <?php
}