【发布时间】:2015-02-06 15:08:44
【问题描述】:
我尝试在我的网站上创建一个表单,访问者可以在其中发布特定类别的帖子。问题是我收到 404 page not found 错误。这是我的代码:
echo "<textarea cols='50' rows='10' style='font-size: 24px;'></textarea><br><br>";
echo "<button id='sendmessage' style='padding:10px'>Submit</button>";
echo "<script>
jQuery('#sendmessage').click(function(e){
e.preventDefault();
jQuery.ajax({
// get the nonce
dataType: 'jsonp',
url: '/api/get_nonce/?controller=posts&method=create_post',
type: 'GET',
success: function (data) {
// create the post
jQuery.ajax({
url: '/api/create_post/',
type: 'POST',
dataType: 'jsonp',
data: {nonce: data.nonce, status:'publish', categories:'mycategory', title:'xxxx', content:'xxxx'},
success: function (data) {
},
error: function (data) {
console.log('error');
}
});
},
error: function (data) {
console.log('error');
}
});
});
</script>"
在控制台上,我收到此错误:
"NetworkError: 404 Not Found - http://localhost/api/get_nonce/?controller=posts&method=create_post&callback=jQuery111109654319724222027_1423235015042&_=1423235015043"
我现在在 localhost 上工作。
【问题讨论】:
标签: php jquery ajax json wordpress