Zend GData 电子表格工作表 ID

发布于 2024-12-01 19:00:40 字数 569 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情深已缘浅 2024-12-08 19:00:40

如果您不知道工作表标识符,则必须执行第一个查询来检索电子表格的工作表元提要:

$query = new Zend_Gdata_Spreadsheets_DocumentQuery();
$query->setSpreadsheetKey($spreadsheetKey);
$feed = $spreadsheetService->getWorksheetFeed($query);

然后,迭代 $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:

$query = new Zend_Gdata_Spreadsheets_DocumentQuery();
$query->setSpreadsheetKey($spreadsheetKey);
$feed = $spreadsheetService->getWorksheetFeed($query);

Then, you iterate $feed->entries and each entry will represent a worksheet and have an identifier.

与他有关 2024-12-08 19:00:40

$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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文