用于AMP HTML页面的锚标记中的AMP query_param替换

时间:2017-11-06 16:13:03

标签: amp-html

AMP文档声明我应该能够在我的href标记中使用QUERY_PARAMS。

我的基本网址是:

http://localhost:3000/lp/test?amp=true?c=hello

我的锚标签如下:

<a href="http://localhost:3000/lp/test?amp=true?test=QUERY_PARAM(c)"></a>

考虑到这一点,我希望将QUERY_PARAM(c)替换为hello,除非我错误地解释了文档。但是,当我尝试检查我页面上的锚标记时,网址就像以前一样。

期望:

<a href="http://localhost:3000/lp/test?amp=true?test=QUERY_PARAM(c)" data-amp-replace="QUERY_PARAM"></a>

实际值:

<a href="http://localhost:3000/lp/test?amp=true?test=QUERY_PARAM(c)" data-amp-replace="QUERY_PARAM"></a>

当我点击链接时,网址会更改为以下内容。看起来它不是抓取查询参数

http://localhost:3000/lp/test?amp=true?test=

0 个答案:

没有答案