在 Flex mobile 中读取并显示 RSS 流

发布于 2024-12-12 04:51:08 字数 638 浏览 0 评论 0原文

我第一次使用 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 技术交流群。

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

发布评论

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

评论(1

蛮可爱 2024-12-19 04:51:08

我不知道您的 rss feed 的结构是什么,但对于我使用过的任何内容,dataProvider 需要以下项目 ArrayCollection 路径:

dataProvider="{srv.lastResult.rss.channel.item}"

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:

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