我想在Firefox中为Greasemonkey创建一个用户脚本而不使用jQuery,它可以在加载网站页面时用新文本替换旧文本。
HTML code:
..
window.app = profileBuilder({
..
"page": {
"btn": {
"eye": "blue",
"favorite_color": "blue",
"gender": "male",
},
},
..
});
..
用“红色”代替“绿色”,“蓝色”,用“红色”代替“男性”,用“女性”代替“男性”。
当页面被加载时,我想看看,例如绿色(不是蓝色)是针对性别的眼睛和女性(不是男性)。
我想我需要使用下一个功能:
GM_getValue()
GM_setValue()
JSON.parse()
JSON.stringify()
PS:代码JSON直接在页面中而不在文件中(../ code.json)
用户代码:
// ==UserScript==
// @name nemrod Test
// @namespace nemrod
// @include http*://mywebsite.com/*
// @version 1
// ==/UserScript==
var json = {"page": {"btn": {"eye": "blue","favorite_color": "blue","gender": "male",},},};
var stringified = JSON.stringify(json);
stringified = stringified.replace(/"eye": "blue"/gm, '"eye": "green"');
stringified = stringified.replace(/"favorite_color": "blue"/gm, '"favorite_color": "red"');
var jsonObject = JSON.parse(stringified);
不起作用
有人可以帮助使用正确的代码吗?
答案 0 :(得分:11)
首先stringify()
你的JSON。
var stringified = JSON.stringify(json);
接下来,使用.replace()
JavaScript字符串函数。
stringified = stringified.replace('"eye": "blue"', '"eye": "green"');
stringified = stringified.replace('"gender": "male"', '"gender": "female"');
现在{J}成为对象的parse()
。
var jsonObject = JSON.parse(stringified);
现在,您可以根据需要使用jsonObject
。
编辑:使用这些行而不是之前的.replace()
。
stringified = stringified.replace('"eye": "blue"', '"eye": "green"');
stringified = stringified.replace('"gender": "male"', '"gender": "female"');
答案 1 :(得分:0)
更准确的程序是使用正则表达式。
stringified.replace(/"eyes":"blue"/gm, '"eyes":"blue"')
通过这种方式,你知道你正在为眼睛取代蓝色而不是任何蓝色出现(如喜欢的颜色)。
'g'&正则表达式的'm'选项代表全局,这将导致搜索所有适用的匹配(如果你的json中有多个'眼睛')和'm'代表多行。如果您的字符串是多行的。
答案 2 :(得分:0)
第一次迭代 - JSON.stringify
var json = {"page": {"btn": {"eye": "blue","favorite_color": "blue","gender": "male"}}};
var replaceBy = {
eye: function(value) {
if (value == 'blue') {
return 'green'
}
},
favorite_color: function(value) {
if(value == 'blue') {
return 'red'
}
},
gender: function(value) {
if(value == 'male') {
return 'female'
}
}
}
console.log(JSON.stringify(json, function(key, value) {
if(replaceBy[key]) {
value = replaceBy[key](value)
}
return value
}))
第二次迭代 - 对 ES Harmony
很好
'use strict'
var json = {
"page": {
"btn": {
"eye": "Blue",
"favorite_color": "blue",
"gender": "male"
}
}
};
class Replacer {
constructor() {
this.matchers = []
}
addRule(rule, source, destination) {
this.matchers.push({
type: rule,
matcher: value => value == source ? destination : value
})
return this
}
addMatcher(type, matcher) {
this.matchers.push({
type: type,
matcher: matcher
})
return this
}
getByType(type) {
return this.matchers.find(matcher => matcher.type === type)
}
applyRuleFor(type, value) {
if (this.getByType(type)) {
return this.getByType(type).matcher(value)
}
}
static replaceWith(replacer) {
return (key, value) => {
if (replacer.getByType(key)) {
value = replacer.applyRuleFor(key, value)
}
return value
}
}
}
console.log(JSON.stringify(json, Replacer.replaceWith(new Replacer()
.addMatcher('eye', (value) => value.match(/blue/i) ? 'green' : value)
.addRule('favorite_color', 'blue', 'red')
.addRule('gender', 'male', 'female'))))
答案 3 :(得分:0)
JSON
和JSON.parse()
可以轻松完成 JSON.stringify()
字符串操作。
下面给出了一个示例:
var tweet = '{ "event": { "type": "message_create", "message_create": { "target": { "recipient_id": "xx_xx" }, "message_data": { "text": "xxx_xxx" } } } }';
var obj = JSON.parse(tweet);
obj.event.message_create.target.recipient_id = Receiver;
obj.event.message_create.message_data.text = statusText;
var tweetString = JSON.stringify(obj);
现在tweetString
已更新JSON
对象。