我正在尝试从服务器获取一个 ID 到 amp-pixel。问题是像素 URL 被查询了两次——一次是空的 cid,一次是正确的,当模板填充了来自服务器的{{id}}时。
有没有办法避免这种情况,并且只有在填充了来自服务器的数据后才调用像素 URL,或者以其他方式执行此操作?
<amp-render class="sample" src="https://www.example.com/id_json.php" layout="fixed-height" height="0" binding="never" aria-live="off">
<template type="amp-mustache">
<amp-pixel src="https://www.google-analytics.com/collect?v=1&cid={{id}}&ds=AMP&tid=UA-XXX-5&dl='.$ampurl.'&sd=dnt&sr=dnt&ua=dnt&t=pageview&jid=RANDOM&z=RANDOM"></amp-pixel>
</template>
</amp-render>