Drupal6 - 节点导入

发布于 2024-10-21 23:59:13 字数 213 浏览 2 评论 0原文


我已经使用 Views Bonus Pack 将大量节点导出为 csv 文件,我想更新这些节点并导入到drupal中,以便替换现有节点(而不是创建新节点)。

哪些模块或方法可以用它来做(“导入并替换现有节点”),谢谢

Hi
I have used Views Bonus Pack to export a mass of node as a csv file, I would like to update these nodes and import to the drupal so as to REPLACE the existing node(not creating new node).

Which modules or method can do with it("import and REPLACE the existing node"), thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

開玄 2024-10-28 23:59:13

您可以使用Feeds 模块来完成此操作。这是其文档的链接。

Feeds 非常容易使用。它将允许您选择节点类型、在 CSV 和内容类型之间映射字段、允许您替换节点等等。

  • 首先,您需要在“www.example.com/admin/build/feeds/create”创建一个新的导入器
  • 然后您需要在“www.example.com/admin/build/feeds/edit/NAME_OF_IMPORTER”配置设置
  • 基本上替换解析器的节点,您需要CSV解析器处理器您需要节点处理器,最有可能的是文件上传用于Fetcher设置。
  • 单击节点处理器旁边的“映射”链接来设置所需的 CSV->内容类型字段映射
  • 在“www.example.com/import/NAME_OF_IMPORTER”导入您的 CSV

您可能需要调整一些更具体的设置,但该模块应该满足您的要求。

You can do this with the Feeds Module. Here is a link to its Documentation.

Feeds is pretty easy to use. It will allow you to choose a node type, map fields between the CSV and your content type, allow you to replace the nodes, and more.

  • First you need to create a new importer at "www.example.com/admin/build/feeds/create"
  • Then you need to configure the settings at "www.example.com/admin/build/feeds/edit/NAME_OF_IMPORTER"
  • Basically to replace nodes for Parser you want CSV Parser, for Processor you want Node processor, and most likely File Upload for the Fetcher setting.
  • Click on the "Mapping" link next to Node processor to setup your desired CSV->Content type field mapping
  • Import your CSV at "www.example.com/import/NAME_OF_IMPORTER"

You may need to tweak a few more specific settings, but this module should do what you are asking.

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