存档修改html,制作可以修改.rpgsave存档的⽹页[HTML] 纯⽂本查看 复制代码
修改rpgsave存档
class="upload-demo"
drag
:auto-upload="1==2"
:on-change="upload"
:on-preview="clickFile"
action="#"
>
将⽂件拖到此处,或 点击上传
原⽂:
网页html下载
解码:
⾦钱
姓名
等级
⽣命
魔⼒
攻击
魔攻
敏捷
占位
var app = new Vue({
el: '#app',
data: {
⽂件路径: null,
加密内容: null,
解密内容: null,
json内容: null,
json对象: {},
⾓⾊列表: []
},
computed: {
get: function () {
try {
var _ = this.json对象["party"]["_gold"]
} catch (error) {
console.log(error)
_ = "未取到值"
}
return _
},
set: function (value){
try {
this.json对象["party"]["_gold"] = value
} catch (error) {
console.log(error)
}
}
}
},
watch: {
加密内容(新值, 旧值) {
this.解密内容 = this.读取解密内容(新值)
},
解密内容(新值, 旧值) {
this.json内容 = this.读取json内容(新值)
},
json内容(新值, 旧值) {
this.json对象 = _json_obj(新值)
try {
this.⾓⾊列表 = this.json对象["actors"]["_data"]["@a"] } catch (error) {
console.log(error)
this.⾓⾊列表 = []
}
},
methods: {
/
/ (1)
upload: function (file, fileList) {
this.⽂件路径 = file.name
file.⽂件路径 = this.⽂件路径
this.读取加密内容(file.raw)
},
clickFile: function (file) {
this.读取加密内容(file.raw)
this.⽂件路径 = file.⽂件路径
},
// (2)
读取加密内容: function (file) {
var _this = this
var reader = new FileReader()
_this.加密内容 = sult
}
},
// (3)
decodeText_to_encodeText: function () {
this.加密内容 = de(this.解密内容)
},
// (4)
读取解密内容: function (加密内容) {
return this.decode(加密内容)
},
// (5)
读取json内容: function (解密内容) {
return JSON.stringify(JSON.parse(解密内容),null,2)
// (6)
change_and_encode_and_save: function (obj) { this.change_and_encode(obj)
this.save(this.加密内容, this.⽂件路径)
},
change_and_encode_and_ctrlC: function (obj) { this.change_and_encode(obj)
},
// ------------ 辅助⽅法 ------------
change_and_encode: function (obj) {
let _ = _json_str(obj)
this.加密内容 = de(_)
},
ctrl_c: function (text) {
this.$message('已复制');
},
// ------------ ⼯具⽅法 ------------
to_json_obj: function (obj) {
return JSON.parse(obj)
},
to_json_str: function (obj) {
if(typeof(obj) == "string"){
return JSON.stringify(JSON.parse(obj))
}
return JSON.stringify(obj)
},
encode: function (text) {
return LZStringpressToBase64(text)
},
decode: function (text) {
return LZString.decompressFromBase64(text)
save: function (text, ⽂件名 = "a1.txt") {
let pos = ⽂件名.lastIndexOf("/")
⽂件名 = ⽂件名.substring(pos+1)
var file = new File([text], ⽂件名, { type: "text/plain;charset=utf-8" }) saveAs(file)
},
// 复制的⽅法
copyText: function(text, callback){ // text: 要复制的内容, callback: 回调var tag = ateElement('input');
tag.setAttribute('id', 'cp_hgz_input');
tag.value = text;
if(callback) {callback(text)}
}
}
})

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。