尝试从 asp.net 函数读取 json 数据时出现以下错误,这是图像错误
这是jQuery代码,
<script type="text/javascript">
$(document).ready(function () {
$("#getdata").click(function () {
$.ajax({
type: "POST",
url: "Default.aspx/GetData",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
alert(data.d);
// $("#company").html(data.d);
console.log(data);
},
error: function (error) {
alert(error);
}
});
});
});
</script>
我做错了什么来得到这个错误。感谢您的任何帮助。从控制台日志中获取此错误,console.log(error)