3

我需要在一个请求中获取所有列的列表,并手动说明我应该传递查询字符串参数:

大多数索引端点默认为 100 个结果的页面大小。如果您一次需要所有结果,则应指定 includeAll=true 查询字符串参数。

这是我尝试过的:

var options = {
    sheetId: 2252168947361668,
    includeAll: true
};

smartsheet.sheets.getColumns(options)
    .then(function (data) {
        console.log(data);
    })
    .catch(function (error) {
        console.log(error);
    });

但它只返回前 100 列。我应该如何将查询字符串参数传递smartsheet-api给 node.js?

4

1 回答 1

5

includeAll参数是一个查询字符串参数,因此它必须包含在queryParameters对象中。以下内容应该适合您:

var options = {
    sheetId: 2252168947361668,
    queryParameters: {
      includeAll: true
    }
};

smartsheet.sheets.getColumns(options)
    .then(function (data) {
        console.log(data);
    })
    .catch(function (error) {
        console.log(error);
    });
于 2015-12-16T04:15:28.313 回答