yahoo Pipes 如何交换标题和描述
我正在使用 yahoo 管道创建 RSS 提要,但我想要描述中的标题和标题中的描述。我想交换标题和描述。
<item>
<title>"**title**"</title>
<description>"**description**"</description>
<link>http://link</link>
</item>
我想
<item>
<title>"**description**"</title>
<description>"**title**"</description>
<link>http://link</link>
</item>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法 - 使用 3 Pipes 模块交换标题和描述字段:
我创建了一个示例管道,您可以从中查看和复制: http://pipes.yahoo.com/pipes/pipe.info?_id=ffc846056c71a4dd3df7b01d16fdd613
这是原始 雅虎财经 RSS feed:
...这是相应的输出样品管,带有标题和;描述交换:
注意:在我上面的示例中,pubDate 发生了一些事情。我认为这可能是雅虎管道缓存问题,该问题将在下次管道运行时解决。
Here's one way you can do it - using 3 Pipes modules to swap the title and description fields:
I created a sample pipe you can view and copy from: http://pipes.yahoo.com/pipes/pipe.info?_id=ffc846056c71a4dd3df7b01d16fdd613
Here's a sample from the original Yahoo Finance RSS feed:
...and here's the corresponding output from the sample pipe, with title & description swapped:
Note: in my sample above something happened to the pubDate. I think it might be a Yahoo Pipes caching issue that will clear up the next time the pipe runs.