我花时间开发了一个解决方案,将数据附加到Google表格中。我正在使用PHP库,事情进展顺利。
我的功能很好。我可以在需要时附加数据。功能是:
function addRowToSpreadsheet($sheetsService, $spreadsheetId, $sheetId, $newValues = []) {
// Build the CellData array
$values = [];
foreach ($newValues AS $d) {
$cellData = new Google_Service_Sheets_CellData();
$value = new Google_Service_Sheets_ExtendedValue();
$value->setStringValue($d);
$cellData->setUserEnteredValue($value);
$values[] = $cellData;
}
// Build the RowData
$rowData = new Google_Service_Sheets_RowData();
$rowData->setValues($values);
// Prepare the request
$append_request = new Google_Service_Sheets_AppendCellsRequest();
$append_request->setSheetId($sheetId);
$append_request->setRows($rowData);
$append_request->setFields('userEnteredValue');
// Set the request
$request = new Google_Service_Sheets_Request();
$request->setAppendCells($append_request);
// Add the request to the requests array
$requests = array();
$requests[] = $request;
// Prepare the update
$batchUpdateRequest = new Google_Service_Sheets_BatchUpdateSpreadsheetRequest(array(
'requests' => $requests
));
try {
// Execute the request
$response = $sheetsService->spreadsheets->batchUpdate($spreadsheetId, $batchUpdateRequest);
if ($response->valid()) {
return true;// Success, the row has been added
}
} catch (Exception $e) {
error_log($e->getMessage());// Something went wrong
}
return false;
}
问题是:如果我通过以下数组发送:
('Joe', 'Schmo', 23)
插入的内容是:
乔| Shmo | ' 23
如何通过此数据发送并且没有数字得到撇号。我想要的是:
乔| Shmo | 23
- 根据回答更新:
如果我像这样设置数组:
$values = array('25000.00','test', intval(2));
我试图通过推送intval()强制类型。问题是这会触发以下错误:
Google_Service_Exception in REST.php line 118:
{
"error": {
"code": 400,
"message": "Invalid value at 'requests[0].append_cells.rows.values[2].user_entered_value.string_value' (TYPE_STRING), 2",
"errors": [
{
"message": "Invalid value at 'requests[0].append_cells.rows.values[2].user_entered_value.string_value' (TYPE_STRING), 2",
"domain": "global",
"reason": "badRequest"
}
],
"status": "INVALID_ARGUMENT"
}
}
感谢
答案 0 :(得分:2)
在excel中,23是字符串(字符),23是数字。需要转换数组元素。
答案 1 :(得分:0)
经过大量的审查,谷歌搜索和其他垃圾。我已经弄明白了这个问题。问题很简单。我循环遍历值的代码:
foreach ($newValues AS $d) {
$cellData = new Google_Service_Sheets_CellData();
$value = new Google_Service_Sheets_ExtendedValue();
$value->setStringValue($d);
$cellData->setUserEnteredValue($value);
$values[] = $cellData;
}
需要一个小小的更新:
foreach ($newValues AS $d) {
$cellData = new Google_Service_Sheets_CellData();
$value = new Google_Service_Sheets_ExtendedValue();
if(is_numeric($d)){
$value->setNumberValue($d);
} else {
$value->setStringValue($d);
}
$cellData->setUserEnteredValue($value);
$values[] = $cellData;
}
问题是PHP库已经支持了这个,但是文档记录很少。我不得不深入图书馆。
在:vendor / google / apiclient-services / src / Google / Service / Datastore / Value.php
还有其他功能可以处理其他类型的数据。我只需要运行if / else或case。