锚链接与参数的应用程序,谷歌的Apps脚本(Anchor link to app with para

2019-07-19 10:03发布

我在我的HTML模板下锚:

<a href="<?!= ScriptApp.getService().getUrl() ?>"><button>All Feedback</button></a>
<a href="<?!= ScriptApp.getService().getUrl()+"&filter=bomgar" ?>"><button>Bomgar Feedback</button></a>
<a href="<?!= ScriptApp.getService().getUrl()+"&filter=tickets" ?>"><button>Ticket Feedback</button></a>

当导航到与参数的链接时,“&”和“=”符号是在URL%26%和3D。 有没有一种方法,以防止这种情况发生?

谢谢

Answer 1:

要添加GET参数的URL,你应该使用? 字符来介绍一下(而不是&字符)。 和符号是用来添加多个变量。 所以您的网址应该是这样的。

http://script.google.com/[.......]/exec?variable=data&otherVariable=otherData

所以,既然你没有的? ,该URL被消毒,以消除这些字符。

这个Web应用程序 ,我提出说明的差异。

<a href="<?= ScriptApp.getService().getUrl()+"?filter=bomgar" ?>"><button>Bomgar Feedback</button></a>


文章来源: Anchor link to app with parameters, google apps script