我最近编写了一个程序,使用API 1.1自动更新工作表,并使用
行smartsheet.rows().updateCells(rowId, cells);
更新工作表中的一行单元格。在2.0版本中,rows()已被弃用,但我仍然无法找到此行的2.0等效值。
答案 0 :(得分:0)
updateCells()已被updateRows()取代,可以使用rowResources()访问。详细示例代码可在此处获取:http://smartsheet-platform.github.io/api-docs/#update-cell(s)
示例代码:
new_array.push(a);
new_array.push(b);
return new_array;