我有这个要求:
var sendObj = {
requested_full_post_id: id // some INT Value
}
console.log("fullpost sollte angezeigt werden");
$.post('/api/get/singlepost', sendObj, function(result){
console.log(result);
});
这是一个定期的POST请求,它将一个Object发送到服务器。奇怪的是,当我尝试在safari和chrome中执行此操作时,POST请求不会被执行。 浏览器没有错误,服务器上没有错误。好像什么都没发生一样。
我很感激任何帮助:)