Я пытаюсь сохранить статус флажка в localStorage, вот код с mithril 2.0, но он не будет перерисовывать флажок после oninit ().
<!doctype html><head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="//unpkg.com/mithril@next/mithril.min.js"></script>
</head>
<body>
<script>
var state = false
var ConfigPage = {
view: function(vnode) {
return m('input[type=checkbox]', {
value: state,
onchange: function(e) {
state = (e.target.value !== 'true')
if (localStorage !== undefined) {
var s = JSON.stringify(state)
console.log("save state in t1:", s)
localStorage.setItem('t1', s)
}
}
})
}
}
m.mount(document.body, {
oninit: function(vnode) {
if (localStorage !== undefined) {
var v = localStorage.getItem("t1")
if (v !== null) {
state = JSON.parse(v)
console.log("load state from t1:", v)
}
}
},
view: function() {
return m(ConfigPage)
}
})
</script>
</body></html>