gpt4 book ai didi

javascript - 努力将 Javascript 中的 JSON 字符串转换为 JSON

转载 作者:行者123 更新时间:2023-12-03 08:48:09 25 4
gpt4 key购买 nike

所以我正在使用 Angular 制作一个混合移动应用程序,并且我有来自 $http.jsonp 请求的字符串。我正在尝试将收到的响应转换为 JSON。我已经检查了 https://jsonformatter.curiousconcept.com/ 处的 JSON 请求看来 JSON 是有效的。

我在 Chrome 网络控制台中收到的错误是“未捕获的语法错误:意外的标记:”,但我一辈子都无法弄清楚为什么会出现这种情况?

使用下面服务器的响应,有人可以告诉我我在这里做错了什么吗?

{
"rss":{
"version":"2.0",
"xmlns:content":"http://purl.org/rss/1.0/modules/content/",
"xmlns:wfw":"http://wellformedweb.org/CommentAPI/",
"xmlns:dc":"http://purl.org/dc/elements/1.1/",
"xmlns:atom":"http://www.w3.org/2005/Atom",
"xmlns:sy":"http://purl.org/rss/1.0/modules/syndication/",
"xmlns:slash":"http://purl.org/rss/1.0/modules/slash/",
"channel":{
"title":"WEBSITE TITLE",
"link":[
{
"href":"https://www.WEBURL.com/feed/",
"rel":"self",
"type":"application/rss+xml"
},
"https://www.WEBURL.com"
],
"description":"WEB DESCRIPTION",
"lastBuildDate":"Fri, 25 Sep 2015 16:33:52 +0000",
"language":"en-US",
"updatePeriod":"hourly",
"updateFrequency":"1",
"generator":"http://wordpress.org/?v=4.3",
"item":[
{
"title":"TITLE",
"link":"https://www.WEBURL.com/2015/09/25/POST",
"comments":[
"https://www.WEBURL.com/2015/09/25/POST/#comments",
"0"
],
"pubDate":"Fri, 25 Sep 2015 16:27:19 +0000",
"creator":"AUTHOR",
"category":"CATEGORY",
"guid":"https://www.WEBURL.com/?p=12345",
"description":"<p>POST DESCRIPTION</p>\n",
"encoded":"<p class=\"article-content__figure article-content--image\">POST CONTENT</p>\n",
"commentRss":"https://www.WEBURL.com/2015/09/25/POST/feed/"
}
]
}
}
}

Javascript 如下:

$http.jsonp("http://jsonburner.herokuapp.com/source?feed=https://www.WEBURL.com/feed/")
.success(function(data) {
$scope.debug = data.rss.version
//$scope.debug = data.rss.version

})
.error(function(data) {
$scope.debug = data
//$scope.debug = data.rss.version

});

谢谢

亚历克斯

最佳答案

我认为您混淆了 JSON 和 JSONP(请参阅 here for the difference between them )。

您可能只想使用 $http.get (或者 URL 后面的服务器期望的任何动词)。请参阅$http docs for details .

关于javascript - 努力将 Javascript 中的 JSON 字符串转换为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32795783/

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