执行我的ajax请求时,我得到了以下Errorcode。
拒绝执行脚本 'http://inet/_api/web/lists/GetByTitle(' 待办事项 ')?/项目/ $选择=标题&安培;回调= jQuery31002972444065120874_1476256852529&安培; _ = 1476256852530' 因为它的MIME类型('application / atom + xml')不可执行,而且 启用了严格的MIME类型检查。
http://inet/_api/web/lists/GetByTitle('ToDos')/items/?$select=Title&callback=jQuery31002972444065120874_1476256852529&_=1476256852530 contains xml version="1.0" encoding="utf-8" data
。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.min.js"></script>
</head>
<body>
<script type="text/javascript">
execOperation();
function execOperation() {
$.ajax({
url: "http://inet/_api/web/lists/GetByTitle('ToDos')/items/?$select=Title",
method: "GET",
contentType:"application/json; charset=utf-8",
dataType : "jsonp",
headers: {
Accept: "application/jason;odata=verbose" ,
},
success: function (data) {
document.write((data));
},
error: function (err) {
document.write('!!! ERROR !!!<br>');
document.write(err);
}
})
}
</script>
</body>
</html>
感谢您的帮助。