- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法使用带有文档的应用程序脚本以编程方式创建锚定到 Google Doc 中特定文本的评论。
关于如何使用 Google Drive API 创建锚定评论的 Google 文档:
https://developers.google.com/drive/web/manage-comments
这是我必须在文档中创建评论的代码:
Drive.Comments.insert({
"kind": "drive#comment",
"author": {
"kind": "drive#user",
"displayName": USER_EMAIL,
"isAuthenticatedUser": true,
},
"content": CONTENT,
"status": "open",
"anchor": "{'r':"
+ REVISION_ID
+ ",'a':[{'txt':{'o':"
+ STARTING_OFFSET
+ ",'l':"
+ OFFSET_LENGTH
+ ",'ml':"
+ TOTAL_CHARS
+ "}}]}",
"fileId": FILE_ID
}, FILE_ID);
/* USER_EMAIL, CONTENT, REVISION_ID, FILE_ID: string,
STARTING_OFFSET, OFFSET_LENGTH, TOTAL_CHARS: int */
STARTING_OFFSET
对应的特定字符创建文本 anchor 。和
OFFSET_LENGTH
.
最佳答案
Anchoring Comments feature来自 Google Drive API 的目的是用于非 Google 文档编辑器文件,而不是用于 Google 文档。见 https://youtu.be/ZBU52nacbLw?t=5m26s (感谢通过 comment 分享此 URL 的 Bryan P)
不幸的是此时Document Service来自 Google Apps 的脚本不包含用于处理评论和讨论的类评论。
2016 年初,通过 Google Apps 脚本问题和功能请求官方网站发布了功能请求。通过对此功能请求加注星标,您可以帮助 Google 员工关注它:
Issue 5650: Provide ability to create a Drive API Comment anchor resource as method on DocumentApp selection class
2012 年发布的较旧引用,非常相似但范围更广,通过 Alexander 的评论引用:
Issue 1618: Provide read/write access to comments in Google Docs
引用文献
关于google-apps-script - 在 Google Docs 中以编程方式创建锚定评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23498275/
我是一名优秀的程序员,十分优秀!