[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-12-21。"],[[["Field masks enhance API efficiency by specifying the fields to be returned or updated in Google Sheets API requests, improving performance."],["For read requests, use the `fields` URL parameter with a FieldMask format to limit the data returned, explicitly listing needed fields for optimal performance."],["Update requests within `spreadsheets.batchUpdate` use field masks to identify fields being modified, ignoring unspecified fields and preserving their current values."],["While a wildcard `*` can represent all fields, it's recommended to explicitly list updated fields in production to avoid potential issues with future API changes."]]],["Field masks in the Google Sheets API specify which fields to return or update, enhancing performance by reducing unnecessary work. Read operations use the `fields` URL parameter with a field mask to limit the returned data, using comma-separated fields and dot-separated subfields. Update operations, within `spreadsheets.batchUpdate`, employ field masks to modify specific fields, leaving others unchanged; omitting a field in the updated data and including it in the mask unsets it. It is advisable to list specific fields.\n"]]