如何在 Google 桌面小工具中保存用户偏好设置?

发布于 2024-09-15 09:48:48 字数 65 浏览 3 评论 0原文

我想将用户首选项保存在 Google 桌面小工具中。 我找不到任何相关文件。

谁能告诉我我该怎么做?

I want to save the user preferences in a Google Desktop Gadget.
I am not able to find any documents for it.

Can anyone tell me how can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-09-22 09:48:48

终于我自己弄清楚了!

“选项”用于存储 Google 桌面小工具中的用户首选项。
更多详细信息可以在这里找到:
http://code.google.com/apis/desktop/docs/ gadget_apiref.html#options

以下是如何使用它的示例:

获取值: options.getValue("checkboxa");
保存值: options.putValue("checkboxa", "ON");

更多详细信息可以在这里找到:
http://google-desktop-sdk.googlecode.com/ svn/trunk/OptionsDialog/main.js

希望这对您有帮助。

谢谢,
快乐哈迪克

Finally I have figured it out myself!

"options" are used to store user preferences in google desktop gadget.
More details could be found here:
http://code.google.com/apis/desktop/docs/gadget_apiref.html#options

Here is an example of how to use it:

To get value: options.getValue("checkboxa");
To save value: options.putValue("checkboxa", "ON");

More details could be found here:
http://google-desktop-sdk.googlecode.com/svn/trunk/OptionsDialog/main.js

Hope this was helpful.

Thanks,
happyhardik

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文