2

我正在尝试createAsset使用content-management-api

我正在使用的 JavaScript 脚本是

./contentful/contentful-import.js

const contentful = require('contentful-management');

const client = contentful.createClient({
  accessToken:'AUTHTOKEN'
});

client
  .getSpace('SPACE')
  .then(space => {
    space.createAsset({
      fields: {
        title: {
          'en-US': 'Example 1'
        },
        description: {
          'en-US': 'Example Description'
        },
        file: {
          'en-US': {
            contentType: 'image/jpeg',
            fileName: 'example1.jpeg',
            upload:'https://example1.jpeg'
          }
        }
      }
    }),
    space.createAsset({
      fields: {
        title: {
          'en-US': 'Example 2'
        },
        description: {
          'en-US': 'Example Description'
        },
        file: {
          'en-US': {
            contentType: 'image/jpeg',
            fileName: 'example2.jpeg',
            upload:'https://example2.jpeg'
          }
        }
      }
    }),
    //... 700 other assets
  })
  .then(asset => asset.processForAllLocales())
  .then(asset => console.log(asset))
  .catch(console.error)

CLI我运行的功能是

contentful space migration ./contentful/contentful-import.js

哪个返回错误TypeError: migrationCreator is not a function

我在 Contentful 文档中查看了其他地方,但我看不到任何有帮助的东西。

我是在尝试正确上传资产还是做错了什么?

4

1 回答 1

2

您编写的脚本是一个“普通”的 node.js 脚本。

node contentful-import.js

会很好地完成这项工作。contentful space migration使用特定格式的特定脚本(它们必须导出 a migrationCreator)。有效的迁移将是:

module.exports = function (migration, context) {
  const dog = migration.createContentType('dog');
  const name = dog.createField('name');
  name.type('Symbol').required(true);
};

contentful-cli 在后台使用contentful-migration。你会在那里找到更多文档。

我将立即为 CLI 文档打开 PR。:)

于 2018-09-13T08:29:54.617 回答