gpt4 book ai didi

javascript - 如果从 $http.get() 返回的数据不是 JSON 格式,它是普通文本,如何处理?

转载 作者:行者123 更新时间:2023-11-28 10:41:42 25 4
gpt4 key购买 nike

我正在使用 get API 从指定资源请求数据。

$http.get('http:...').success(function() {

});

但是我收到错误

"SyntaxError: Unexpected token r in JSON at position 1",

我们如何处理这个问题?

最佳答案

The .success and .error methods have been removed from AngularJS 1.6.

而不是

$http.get(...)
.success(function(data, ...) {
...
})
.error(function(data, ...) {
...
});

使用

$http.get(...).then(
function success(response) {
var data = response.data;
...
},function error(response) {
var data = response.data;
});

关于javascript - 如果从 $http.get() 返回的数据不是 JSON 格式,它是普通文本,如何处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50815927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com