json 中的 url,jquery ajax 响应

发布于 2024-08-23 02:25:06 字数 257 浏览 4 评论 0原文

{
    "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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尝蛊 2024-08-30 02:25:06

使用 jQuery.parseJSON( json )。它从 jQuery 1.4 开始可用。

描述:采用格式良好的 JSON
字符串并返回结果
JavaScript 对象。

您应该能够执行以下操作:

var myObj = jQuery.parseJSON('{"imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg","message":"asdf","friend":"Friend1","error_message":""}');
alert(myObj.imgsrc);

Use jQuery.parseJSON( json ). It is available as of jQuery 1.4.

Description: Takes a well-formed JSON
string and returns the resulting
JavaScript object.

You should be able to do:

var myObj = jQuery.parseJSON('{"imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg","message":"asdf","friend":"Friend1","error_message":""}');
alert(myObj.imgsrc);
破晓 2024-08-30 02:25:06

您必须评估您的 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;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文