我是ajax的新手,我有一个任务是从网址获取json对象,但我无法得到它
getNews : function() {
$.ajax = ({
url : corporate.newsService,
header : {
Accept : 'application/json',
'Content-Type' : 'application/json'
},
success : function success(jsonData) {
console.log("hello Json");
}
})
// console.log(corporate.newsService);
},
P.s Cant甚至得到console.log消息
答案 0 :(得分:0)
$ .ajax是一种方法,而不是变量。
所以
$.ajax({
url: 'Your URL',
dataType: "JSON",
success : function success(jsonData) {
console.log("hello Json");
}
});
或尝试使用
$.getJSON('Your URL', null, function(dataReturned){
console.log(dataReturn);
}