我可以使用amp-bind
更新[href]
作为锚点。但是,如果我在amp-list
模板中包含此相同的锚点,则[href]
在应用模板时会出现问题(它由原始位置和URI编码预先添加)。值得注意的是,字符串周围缺少单引号,导致表达式编译错误。
在以下示例中,amp-list
之前的链接在按下按钮时更新正常,而amp-list
模板生成的链接变得严重。有趣的是,模板中的锚点仍然可以正常运行;只有在应用模板后,[href]
才会被破坏。
在模板中锚定:
<a href="https://amp-test/" [href]="path ? 'https://amp-test/' + path.split(' ').join('-') : 'https://amp-test/'">{{linkName}}</a>
应用模板后的锚点:
<a href="https://amp-test/" [href]="https://amp-test/path%20?%20%27https://amp-test/%27%20+%20path.split(%27%20%27).join(%27-%27)%20:%20%27https://amp-test/%27" target="_top" class="i-amphtml-error">one path</a>
因此,标题问题可能附带的一些问题包括:amp-bind
操作是否应该在amp-list
内运行?即我正在看到的预期行为或错误?
最小示例(jsfiddle)
results.json
{
"items": [
{ "linkName": "one path" },
{ "linkName": "two path" }
]
}
的index.html
<!doctype html>
<html ⚡>
<head>
<title>amp-bind in amp-list</title>
<meta charset="utf-8">
<script async src="https://cdn.ampproject.org/v0.js"></script>
<script async custom-element="amp-bind" src="https://cdn.ampproject.org/v0/amp-bind-0.1.js"></script>
<script async custom-element="amp-list" src="https://cdn.ampproject.org/v0/amp-list-0.1.js"></script>
<script async custom-template="amp-mustache" src="https://cdn.ampproject.org/v0/amp-mustache-0.1.js"></script>
<link rel="canonical" href="https://cmphys.com/">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<style amp-custom>
</style>
</head>
<body>
<button on="tap:AMP.setState({path: 'relative path'})">Update</button>
<hr>
<p>
<a href="https://amp-test/" [href]="path ? 'https://amp-test/' + path.split(' ').join('-') : 'https://amp-test/'">link</a>
</p>
<hr>
<amp-list id="myList" class="list" layout="fixed" width="200" height="100" src="/results.json">
<template type="amp-mustache">
<a href="https://amp-test/" [href]="path ? 'https://amp-test/' + path.split(' ').join('-') : 'https://amp-test/'">{{linkName}}</a><br>
</template>
</amp-list>
</body>
</html>
答案 0 :(得分:0)
尝试使用Sanitizers来操纵帖子的AMP内容。为此,您应该避免禁用的URL协议或表示会使AMP验证器失败。
关于amp-list中的amp-bind操作,您可能需要检查documentation,其中提到允许绑定到<amp-list>
组件和属性,并且它是{s}行为就是:
如果expression是字符串,则从字符串URL中提取并呈现JSON。如果expression是对象或数组,则呈现表达式数据。