本文介绍了Jquery ajax调用数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的代码中出现什么问题警报(错误);
what problem in my code why alert(" Error ");
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: "http://localhost:3148/api/values/5",
success: function (data) {
JSON.stringify(data);
alert("Success ");
},
error: function (data) {
alert(" Error ");
}
})
我尝试了什么:
i不知道问题在哪里
What I have tried:
i don't know where the problem
推荐答案
我尝试了什么:
i don'知道问题在哪里
What I have tried:
i don't know where the problem
这篇关于Jquery ajax调用数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!