Unexpected token < {stack: (...), message: "Unexpected token <"}
我想调用一个Ajax函数,但我得到了这个错误......
<script type="text/javascript">
$(document).ready(function() {
var interval = setInterval(function(){
$.ajax({
url :'index.php?module=Page&action=Mandats',
type : 'post',
timeout : 3000,
data : $(this).serialize(),
dataType: 'json',
success : function (data, status, xhr){
alert(status);
},
error : function (xhr, status, error){
console.log(xhr);
console.log(status);
console.log(error);
}
});
}, 1000);
});
</script>
你知道为什么吗?