1

我正在尝试使用内容管理节点模块更新 Contentful 中的现有条目。这是我正在使用的代码,但是我无法更新条目,也无法更新我看到的任何错误。

var client = contentful.createClient({
  // A valid access token for your user (see above on how to create a valid access token) 
  accessToken: 'accessToken value',

  // Enable or disable SSL. Enabled by default. 
  secure: true
});

var log = console.log.bind(console);

client.getSpace('spaceId value').then(function(space) {
  //return space.getEntries();
  space.updateEntry("Sites", {
    sys: {id: 'entryId value', version:15},
    fields: {
        siteName: {'en-US': 'value'}
    }
  });
}).then(log, log);


res.send('hello');
4

1 回答 1

1

当您更新条目时,您不需要将内容类型 ID 作为第一个参数传递。您应该只将数据对象作为第一个参数传递(这将在内容管理的下一个主要版本中更改)。

于 2016-05-03T15:46:46.937 回答