没太明白你的意思 是说想把勾选的所有项目存储起来吗
我写了个样例给你参考一下 希望有所帮助
//// //// //// //// //// //// //// //// //// //// //// ////
"ui";
ui.layout(
<vertical id="main">
<text text="i could be a title" visibility="gone"/>
</vertical>
);
let aim_checkboxes = 12;
let storage_cb = storages.create("cb");
let max_bit = aim_checkboxes.toString().length;
let addZero = num => (new Array(max_bit).join("0") + num).slice(-max_bit);
for (let i = 1; i <= aim_checkboxes; i += 1) {
let checkbox_view = ui.inflate(<checkbox />);
let checkbox_title = "cb_" + addZero(i);
let storage_key = "cb_" + addZero(i);
let storage_value = "1";
checkbox_view.setText(checkbox_title);
checkbox_view.setChecked(!!storage_cb.get(storage_key));
checkbox_view.on("check", checked => checked ? storage_cb.put(storage_key, storage_value) : storage_cb.remove(storage_key));
ui.main.addView(checkbox_view);
}
let btn_view = ui.inflate(<button text="查看存储情况" />);
btn_view.on("click", () => {
// 这里可以写辅助查看存储状态的工具
// 另外再次运行次脚本时 会自动根据存储状态勾选选项
});
ui.main.addView(btn_view);
//// //// //// //// //// //// //// //// //// //// //// ////
我写了个样例给你参考一下 希望有所帮助
//// //// //// //// //// //// //// //// //// //// //// ////
"ui";
ui.layout(
<vertical id="main">
<text text="i could be a title" visibility="gone"/>
</vertical>
);
let aim_checkboxes = 12;
let storage_cb = storages.create("cb");
let max_bit = aim_checkboxes.toString().length;
let addZero = num => (new Array(max_bit).join("0") + num).slice(-max_bit);
for (let i = 1; i <= aim_checkboxes; i += 1) {
let checkbox_view = ui.inflate(<checkbox />);
let checkbox_title = "cb_" + addZero(i);
let storage_key = "cb_" + addZero(i);
let storage_value = "1";
checkbox_view.setText(checkbox_title);
checkbox_view.setChecked(!!storage_cb.get(storage_key));
checkbox_view.on("check", checked => checked ? storage_cb.put(storage_key, storage_value) : storage_cb.remove(storage_key));
ui.main.addView(checkbox_view);
}
let btn_view = ui.inflate(<button text="查看存储情况" />);
btn_view.on("click", () => {
// 这里可以写辅助查看存储状态的工具
// 另外再次运行次脚本时 会自动根据存储状态勾选选项
});
ui.main.addView(btn_view);
//// //// //// //// //// //// //// //// //// //// //// ////