在哪里更改“列表”的数据? dashcode 中的数据源?
我在 dashcode 中创建了一个新项目,它自动为我生成了一个带有列表和示例数据源的移动 Web 应用程序。我看到两个数据源,一个标记为“数据源”,另一个标记为“列表”。但是我可以看到数据源中的实际数据位于 js 文件中,一切都很好,但是“列表”的实际数据存储在哪里?
示例应用程序附带了一堆“列表”数据,我无法更改它。有什么想法吗?
I created a new project in dashcode and it automatically generated a mobile web app for me with a list and sample datasources. I see two datasources, one is labeled as "datasource" and the other is "list". However I can see that the actual data in datasources is in a js file, everything is good but where is the actual data stored for "list"?
The sample application came with a bunch of data for "list" and I am unable to change it. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您单击“数据源”下的“数据源”时,您会注意到显示的第一行是 URL。假设您将使用的数据源位于网络上的某个位置(有一种方法可以在 iPhone 上本地维护数据源,但我稍后会介绍)。因此,“发布”您的 xml|rss|atom|etc。网站上某处的数据并输入适当的 URL。当您按回车键或点击刷新箭头时,如果 URL 正确,DashCode 将解析您的数据文件,并且 DataSource 和 List 项将反映您的 xml 结构。
然后使用 DashCode 创建数据和 DashCode 模板之间的绑定...我对此很感兴趣,因为苹果开发人员网站上有一个很棒的教程: http:// /developer.apple.com/safari/library/documentation/AppleApplications/Conceptual/Dashcode_UserGuide/Contents/Resources/en.lproj/Introduction/Introduction.html#//apple_ref/doc/uid/TP40004692-CH1-SW1
如果上述链接失败,请访问“developer.apple.com”并从该主页搜索“DashCode”。介绍文档应该是返回的第一个链接。
本介绍将引导您完成 DashCode 应用程序的编写,包括使用数据源和绑定到模板。
When you click on "DataSource" under Data Sources, you'll notice that the top line displayed is URL. It is assumed that the DataSource you'll be using is on the web somewhere (there's a way to maintain the datasource locally on the iphone but I'll get to that in a minute). So, "publish" you xml|rss|atom|etc. data on a web site somewhere and enter the appropriate URL. When you press return or hit the refresh arrow, if the URL is correct, DashCode will parse your data file and the DataSource and List items will reflect your xml structure).
Then using DashCode create the bindings between your data and your DashCode template.... I whiz right by this because there is an excellent tutorial at the apple developer website at: http://developer.apple.com/safari/library/documentation/AppleApplications/Conceptual/Dashcode_UserGuide/Contents/Resources/en.lproj/Introduction/Introduction.html#//apple_ref/doc/uid/TP40004692-CH1-SW1
If the above link fails, go to "developer.apple.com" and from that home page search for "DashCode". The intro document should be the first link returned.
This intro walks you through writing DashCode applications including working with DataSources and binding to your templates.