我想知道如何从JavaScript中的回调URL获取数据。 过程如下。
在这种情况下,如何获取数据或访问该URL? 这样可以使用axios调用url吗?
axios({
url: "http://MyWebPage/test",
method: 'GET',
contentType: "application/json",
}).then((response) => {
console.log(response);
});
答案 0 :(得分:0)
为什么要使用jquery?
示例:
$.ajax({
url: 'http://MyWebPage/test',
dataType: 'JSON',
type: 'GET'
}).done(function() {
console.log(response);
});