gpt4 book ai didi

javascript - 如何在 Google Apps 脚本 HTMLService 中设置链接? (错误与accounts.google.com的连接被取消)

转载 作者:行者123 更新时间:2023-12-03 00:18:12 25 4
gpt4 key购买 nike

我尝试使用 Apps 脚本方法 setContent() 在 Google Apps 脚本中添加一个简单 index.html 文件的链接。

  var newDocLink = "https://docs.google.com/document/d/1loBt7T7-4qd0ORBXiTFeDQxuG..."; 
// newDocLink variable have some Google Docs URL as value
var output = HtmlService.createHtmlOutput('Click <a href= " ' + newDocLink + ' ">here to open the link in a new tab</a> a minuta')
SpreadsheetApp.getUi().showModalDialog(output, 'My page title');

我收到了该链接,但当我点击它时,它不起作用,并以我的语言显示此消息“与accounts.google.com 的连接被拒绝”。

我知道这很简单,但我对 HTML 知之甚少,在寻找类似的问题后,没有找到解决方案或类似目的的代码。任何帮助将不胜感激!

最佳答案

问题:

  • 您正尝试在 iframe 内打开 Google 文档,但 Google 文档不允许这样做。

解决方案:

  • 通过设置target属性在新选项卡中打开它

    var output = HtmlService.createHtmlOutput('Click <a rel="noreferrer noopener" href= " '  + newDocLink + ' " target="_blank">here to open the link in a new tab</a>')

引用文献:

关于javascript - 如何在 Google Apps 脚本 HTMLService 中设置链接? (错误与accounts.google.com的连接被取消),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54441061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com