json 中的 url,jquery ajax 响应
{
"imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg",
"message":"asdf",
"friend":"Friend1",
"error_message":""
}
这是我的 JSON
,这里的 imgsrc
位置看起来很困难,两个斜杠。如何转换完美的URL?
{
"imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg",
"message":"asdf",
"friend":"Friend1",
"error_message":""
}
This my JSON
, here imgsrc
location seems difficult, two slashes. what to do to convert perfect URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
jQuery.parseJSON( json )
。它从 jQuery 1.4 开始可用。您应该能够执行以下操作:
Use
jQuery.parseJSON( json )
. It is available as of jQuery 1.4.You should be able to do:
您必须评估您的 JSON 字符串:
var js = eval(json_string);
然后,js 中的 imgsrc 属性将包含您的 URL:
js.imgsrc;
You have to eval your JSON string:
var js = eval(json_string);
Then, the imgsrc property in js will have your URL:
js.imgsrc;