在 Flex mobile 中读取并显示 RSS 流
我第一次使用 Flash Builder 时遇到了一个无法解决的问题。 在此代码中,视图中没有显示任何内容。用作 rss 文件中的分隔标记并具有标题。
可能是什么问题?谢谢
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="Home"
creationComplete="srv.send()">
<fx:Declarations>
<s:HTTPService id="srv" url="http://www..../index.php?feed/rss2"/>
</fx:Declarations>
<s:List id="list" top="0" bottom="0" left="0" right="0"
dataProvider="{srv.lastResult.list.item}"
labelField="title"/>
</s:View>
First time i am using Flash Builder and i got a problem i don't manage to fix.
On this code, nothing is displaying in the view. is used to be the delimiting tag in a rss file and to have the title.
What can be the problem ?? Thanks
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="Home"
creationComplete="srv.send()">
<fx:Declarations>
<s:HTTPService id="srv" url="http://www..../index.php?feed/rss2"/>
</fx:Declarations>
<s:List id="list" top="0" bottom="0" left="0" right="0"
dataProvider="{srv.lastResult.list.item}"
labelField="title"/>
</s:View>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您的 rss feed 的结构是什么,但对于我使用过的任何内容,
dataProvider
需要以下项目 ArrayCollection 路径:I don't know what the structure of your rss feed is, but for any that I've used the
dataProvider
requires the following path to the ArrayCollection of items: