사용자:Bd3076/common.js: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
백괴게임>Bd3076
편집 요약 없음
백괴게임>Bd3076
편집 요약 없음
1번째 줄: 1번째 줄:
function uncy_jsonEdit(){
var mp = new Map();
var mp = new Map();
var api = MediaWikiAPI();
var api = MediaWikiAPI();
 
$('.uncy-jsonedit').each(function() {
$('.uncy-jsonedit').each(function() {
    var jsonDoc = $(this).attr("data-title");
    var jsonDoc = $(this).attr("data-title");
    var jsonData;
    var jsonData;
    if(mp.get(jsonDoc) === undefined){
    if(mp.get(jsonDoc) === undefined){
    jsonData = JSON.parse(api.getDocument(jsonDoc));
    jsonData = JSON.parse(api.getDocument(jsonDoc));
    }
    }
    else{
    else{
    jsonData = JSON.parse(mp.get(jsonDoc));
    jsonData = JSON.parse(mp.get(jsonDoc));
    }
    }
    var variable = $(this).attr("data-var");
    var variable = $(this).attr("data-var");
    var value = $(this).attr("data-val");
    var value = $(this).attr("data-val");
   
   
    console.log(jsonDoc + "." + variable + "." + value);
    console.log(jsonDoc + "." + variable + "." + value);
   
   
    jsonData[variable] = value;
    jsonData[variable] = value;
   
   
    mp.set(jsonDoc, JSON.stringify(jsonData));
    mp.set(jsonDoc, JSON.stringify(jsonData));
});
});
 
mp.forEach(function(value, key) {
mp.forEach(function(value, key) {
console.log(key + ', ' + value);
console.log(key + ', ' + value);
api.changeDocument(key, "JSON 데이터 수정", value, 1);
api.changeDocument(key, "JSON 데이터 수정", value, 1);
});
});
}
$(uncy_jsonEdit());

2019년 2월 13일 (수) 20:10 판

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);
	api.changeDocument(key, "JSON 데이터 수정", value, 1);
});