我目前正在试用 Ubuntu webapps 预览版。在某些情况下,存储一些配置设置可能会很有用。有人知道这是否可行吗?
答案1
您可以使用 HTML 存储进行配置管理。这并非 Ubuntu 独有的。例如:
// When user decides to have the application print "FOO" on startup
localStorage["print_FOO"] = true;
// And then later, when the application launches in another session
if (localStorage["print_FOO"]) {
alert("FOO");
}
您可以在以下位置详细了解本地存储深入研究 HTML5。