我有一个包含以下div的页面
<div class="info" attribute-one="value one" attribute-two="value two" json="see below"></div>
“json”属性填充了类似于
的压缩JSON字符串{
"serviceContext": "\/",
"state": "READY",
"url": "http://domain.com/some-url.extension",
"zoomedPageWidth": 768,
"hits": [
],
"httpContentLoaded": 0,
"resource": "\/session\/zc7d2c08-90d8-4b2d-97f8-a455b28c4e7d\/",
"httpContentLength": 660032
}
现在我想要替换JSON字符串中的resource参数:
"resource": "\/session\/bc7d2c28-90d9-4b2d-97f8-a455b28c4e7d\/",
到
"resource": "http:\/\/domain.com\/page\/session\/bc7d2c28-90d9-4b2d-97f8-a455b28c4e7d\/",
但我不知道如何使用JavaScript中的正则表达式执行此操作。有人帮我解决这个问题吗?
答案 0 :(得分:4)
我要做的是跳过正则表达式,并解析为JSON:
var jsonObject = JSON.parse(theJsonString);
jsonObject.resource = "http://domain.com/page" + jsonObject.resource;
theJsonString = JSON.stringify(jsonObject);
由您将theJsonString
放入元素中。
答案 1 :(得分:0)
您可以使用一些JQuery和JSON函数
HTML:
<div id="test" json='{"serviceContext": "\/", "state": "READY","url": "http://domain.com/some-url.extension","zoomedPageWidth": 768,"hits": [],"httpContentLoaded": 0,"resource":"\/session\/zc7d2c08-90d8-4b2d-97f8-a455b28c4e7d\/","httpContentLength": 660032}'></div>
和JS:
var testElement = $('#test'),
a = testElement.attr('json');
o = JSON.parse(a);
o.resource = 'http://domain.com/page/session' + o.resource;
testElement.attr('json', JSON.stringify(o));