0

我的 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。有没有办法防止这种情况发生?

谢谢

4

1 回答 1

2

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

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

因此,由于您没有?,因此对 URL 进行了清理以消除这些字符。

我制作的这个网络应用程序说明了不同之处。

<a href="<?= ScriptApp.getService().getUrl()+"?filter=bomgar" ?>"><button>Bomgar Feedback</button></a>
于 2013-02-06T20:26:27.260 回答