사용자:Bd3076/common.js: 두 판 사이의 차이
백괴게임>Bd3076 (Bd3076의 355749판 편집을 되돌림) |
백괴게임>Bd3076 편집 요약 없음 |
||
24번째 줄: | 24번째 줄: | ||
mp.forEach(function(value, key) { | mp.forEach(function(value, key) { | ||
console.log(key + ', ' + value); | console.log(key + ', ' + value); | ||
console.log(getDocument(key)); | |||
api.changeDocument(key, "JSON 데이터 수정", value, 1); | api.changeDocument(key, "JSON 데이터 수정", value, 1); | ||
}); | }); |
2019년 2월 14일 (목) 11:57 판
function uncy_jsonEdit(){
var mp = new Map();
var api = MediaWikiAPI();
$('.uncy-jsonedit').each(function() {
var jsonDoc = $(this).attr("data-title");
var jsonData;
if(mp.get(jsonDoc) === undefined){
jsonData = JSON.parse(api.getDocument(jsonDoc));
}
else{
jsonData = JSON.parse(mp.get(jsonDoc));
}
var variable = $(this).attr("data-var");
var value = $(this).attr("data-val");
console.log(jsonDoc + "." + variable + "." + value);
jsonData[variable] = value;
mp.set(jsonDoc, JSON.stringify(jsonData));
});
mp.forEach(function(value, key) {
console.log(key + ', ' + value);
console.log(getDocument(key));
api.changeDocument(key, "JSON 데이터 수정", value, 1);
});
}
$(uncy_jsonEdit());