Zend GData 电子表格工作表 ID
Zend GData 文档中的 $worksheetId
应该是什么?
http://framework.zend.com/manual/en/zend.gdata .spreadsheets.html
$query = new Zend_Gdata_Spreadsheets_ListQuery();
$query->setSpreadsheetKey($spreadsheetKey);
$query->setWorksheetId($worksheetId);
$query->setSpreadsheetQuery('name=John and age>25');
$listFeed = $spreadsheetService->getListFeed($query);
该文档多次使用该 $worksheetId
,但我似乎看不到从电子表格中获取它的位置。
What is the $worksheetId
from the Zend GData documentation supposed to be?
http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html
$query = new Zend_Gdata_Spreadsheets_ListQuery();
$query->setSpreadsheetKey($spreadsheetKey);
$query->setWorksheetId($worksheetId);
$query->setSpreadsheetQuery('name=John and age>25');
$listFeed = $spreadsheetService->getListFeed($query);
The documentation uses that $worksheetId
several times, but I can't seem to see where to get that from a spreadsheet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不知道工作表标识符,则必须执行第一个查询来检索电子表格的工作表元提要:
然后,迭代 $feed->entries,每个条目将代表一个工作表并具有标识符。
If you don't know the worksheet identifiers, you have to perform a first query to retrieve the worksheets metafeed for your spreadsheet:
Then, you iterate $feed->entries and each entry will represent a worksheet and have an identifier.
$worksheetId
是工作表标识符。工作表有一个 gid 标识符 (1,2,....),您可以在打开文档时直接在文档的 url 中看到该标识符。
不幸的是,您无法使用该 id 通过 API 访问它们。
请改用您在以下讨论中找到的代码:
工作表 GID
The
$worksheetId
is the worksheet identifier.Worksheets have a gid identifier (1,2,....) that you can see directly in the url of the document when is opened.
Unfortunately you can't access to them through API with that id.
Use instead the codes that you find in the following discussion:
Worksheet GIDs