Drupal - 如何使用 CCK 保留聚合器项目的本地节点副本?
嘿,我从我的兄弟那里收到了一个学习项目,其中包括:
创建一个使用 Aggregator、CCK 和 Views 模块的 Drupal 站点,方法如下:
Aggregator 将从任意源获取 RSS feed
视图将允许您从聚合器材料创建摘录以及原始文章的链接
确定是否有办法使用 CCK 来保留聚合器项目的本地节点副本 - 我们希望对这些节点进行评论
我是新手,但我知道如何使用 CCK 和视图。 不过第三部我不知道他在说什么。 任何帮助将不胜感激:)
感谢您的宝贵时间,
-Landon
Hey, I received an learning project from my brother that includes:
Create a Drupal site that employs Aggregator, CCK, and Views modules in the following way:
Aggregator will fetch an RSS feed from an arbitrary source
Views will allow you to create excerpts from the Aggregator materials, as well as links to orignal articles
Determine if there's a way to use CCK to keep a local node copy of Aggregator items--we'll want to commenting on these nodes
I'm newb, but I know how to use CCK and Views a bit. However, I don't know what he's talking about in the third part. Any help would be greatly appreciated :)
Thanks for your time,
-Landon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能最好使用 FeedAPI 模块 而不是 Aggregator 模块。 FeedAPI 将传入的提要故事保存为节点,甚至允许您自动将提要项目上的标签映射到节点上的分类术语。 在这种情况下,评论、复杂的观点等都更容易组合在一起。
如果您想将某些 Feed 数据映射到 CCK 字段,另请查看 Feed Element Mapper 模块。 它允许您将任意 RSS 或 XML 数据块分配给其他 CCK 字段。
You're probably better off using the FeedAPI module instead of the Aggregator module. FeedAPI saves incoming feed stories as nodes, and even allows you to automatically map tags on the feed items to taxonomy terms on the nodes. Commenting, compelx views, etc are all a lot easier to put together in that situation.
If you want to map some of the feed data to CCK fields, also check out the Feed Element Mapper module. It lets you assign arbitrary chunks of the RSS or XML data to other CCK fields.