Dashcode 小部件数据源

发布于 2024-09-08 12:07:01 字数 208 浏览 1 评论 0原文

我想知道是否有 Dashcode 3.0 Widgets 数据源的参考手册。

我需要了解以下内容:

  1. 如何刷新(重新查询)数据源
  2. 如何监听数据源事件(onsuccess、onerror)
  3. 如何将参数传递给数据源查询

我很难在 Apple 的文档中找到这些非常基本的信息。

多谢。

I would like to know if there is a Reference manual somewhere for Dashcode 3.0 Widgets' datasources.

I need to know the following:

  1. How to refresh (requery) a datasource
  2. How to listen for datasource events (onsuccess, onerror)
  3. How to pass parameter to datasource query

It's being very difficult for me to find this very basic information in Apple's documentation.

Thanks a lot.

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

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

发布评论

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

评论(2

_蜘蛛 2024-09-15 12:07:01

要回答#3,将参数传递给数据源查询:

ds = dashcode.getDataSource("mydatasource");
ds.setValueForKeyPath("1", "parameters.count");
ds.setValueForKeyPath("bar", "parameters.foo");

会将 ?count=1&foo=bar 添加到查询 URL。

对于#1,我在搜索该主题时看到的答案是添加一个附加参数,您可以为每个查询更改该参数以触发重新查询:

ds.setValueForKeyPath(update++, "parameters.update");

我自己仍然需要知道#2 的答案。

To answer #3, to pass a parameter to the datasource query:

ds = dashcode.getDataSource("mydatasource");
ds.setValueForKeyPath("1", "parameters.count");
ds.setValueForKeyPath("bar", "parameters.foo");

will add ?count=1&foo=bar to the query URL.

For #1, an answer I saw whilst searching this topic was to add an additional parameter which you change for each query to trigger a requery:

ds.setValueForKeyPath(update++, "parameters.update");

I still need to know the answer to #2 myself.

遥远的绿洲 2024-09-15 12:07:01

This is not the most complete guid but it does do over reloading datasources.

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