📅  最后修改于: 2022-03-11 14:58:31.792000             🧑  作者: Mango
// encoding
let obj = {
key1: "foo",
key2: "bar"
};
document.querySelector('body').insertAdjacentHTML('beforeend', ``);
// decoding
JSON.parse(decodeURIComponent(document.querySelector('#input').value));