我在以下网址发送ajax调用,只是回显响应但无法查看成功功能。 我哪里错了?
html文件
$.ajax({
url: '{$PLUG_DIR}/cb_memcached/admin/ajax.php',
data: {
mode: 'videos'
},
type: 'post',
success: function(xhr) {
alert(xhr);
}
});
php文件
<?php
echo "asasas";
?>
答案 0 :(得分:1)
问题似乎是{$ PLUG_DIR}中的某些问题。仍然调用错误并完成调试它的功能。
$.ajax({
url: '{$PLUG_DIR}/cb_memcached/admin/ajax.php',
data: {
mode: 'videos'
},
type: 'post',
success: function(xhr) {
alert(xhr);
},
error: function(error) {
alert(error);
}
});
答案 1 :(得分:1)
您的代码似乎没问题。请仔细检查您的网址。从浏览器点击您的URL以查看响应。这个问题只是因为你的PATH。
答案 2 :(得分:0)
如果需要发送数据结构:
<强> JS 强>
fancy:fb_defaultColor="@android:color/transparent"
<强> PHP 强>
$.ajax({
url: '{$PLUG_DIR}/cb_memcached/admin/ajax.php',
data: {
mode: 'videos'
},
type: 'post',
success: function(xhr) {
var param1 = xhr.param1;
alert(param1);
}
});
答案 3 :(得分:0)
请查看以下情况: