我正在尝试在获取一些json文件后执行post函数。
但是,当我按下触发该功能的按钮时,结果就是获得一个帖子。
function post(info) {
$.ajax({
//type: "POST",
method: "post",
data: info,
url: 'http://www.exefire.com/log',
dataType: "jsonp",
async: true,
success: function(result) {
console.log(result);
},
error: function(request, error) {
var texto = 'Error conectando con el servidor!';
alert(texto);
}
});
}
我不知道我做错了什么。
答案 0 :(得分:1)
从' jsonp'更改dataType属性到了' json'。无法使用jsonp
发出POST请求function post(info) {
$.ajax({
type: "POST",
data: info,
url: 'http://www.exefire.com/log',
dataType: "json",
async: true,
success: function(result) {
console.log(result);
},
error: function(request, error) {
var texto = 'Error conectando con el servidor!';
alert(texto);
}
});
}