我的脚本使用ajax。它向控制器发送请求并以json格式获得响应。但是,取代结果,我的alax脚本什么都不做。
function sayOK(id) {
$.ajax({
url: '/company/' + id + '/employees',
type: 'GET',
contentType: "application/json",
dataType: 'json',
success: function (data) {
alert('OK');
}
});
}
在我的浏览器中,我得到了整个json文件
[{"id":1,"hireDate":1398114000000,"resignDate":null},{"id":10,"hireDate":1398114000000,"resignDate":null}]
任何想法如何修复功能?