我正在尝试获取提要,然后使用 Yahoo Pipes 为每个条目添加一个字段。
为了获取我想添加的字段内容,我必须使用 Fetch Data (http://www.myserver.com/?get=author) 从我的服务器获取一些数据
但是,我想在一个请求(http://www.myserver.com/?get=author1-author2-author3)中获取所有条目的信息,而不是发出与条目数量一样多的请求。
我的问题是我不知道如何创建包含所有带有“-”分隔符的字段的字符串(author1-author2-author3 ...)。我尝试使用 Loop 进行实验,但没有成功。
此外,我找不到将获取的数据与条目连接的方法。Loop 似乎没有提供这样的功能。
我的饲料:
<item><author>author1</author></item>
<item><author>author2</author></item>
<item><author>author3</author></item>
我想要达到的目标:
<item><author>author1</author><authorid>34</authorid></item>
<item><author>author2</author><authorid>54</authorid></item>
<item><author>author3</author><authorid>30</authorid></item>
我不指望一个正在运行的管道,只是一个提示我该怎么做。谢谢你。