我想知道如何根据用户选择的选项获取文本内容并将其设置为amp-state
。
例如,如果用户选择“红色”选项。我想将“胭脂”设置为amp-state
而不是“红色”。我知道可以通过setState函数中的event.targetOption获取value
。但是,找不到如何获取文本并将文本设置到amp-state
中。
<amp-state id="selectedColor">
<script type="application/json">
{
"value": ""
}
</script>
</amp-state>
<p>Selected Color <span [text]="selectedColor.value"></span></p>
<amp-selector
layout="container"
on="select:AMP.setState({
selectedColor: {
value: event.targetOption
}
})">
<div option="red">rouge</div> <!-- user select this -->
<div option="blue">bleu</div>
<div option="green">vert</div>
</amp-selector>
我的预期输出如下
<p>Selected Color <span>rouge</span></p>
不是
<p>Selected Color <span>red</span></p>
答案 0 :(得分:5)
您可以这样做:
<!-- 1. Initialize colorMap -->
<amp-state id="colorMap">
<script type="application/json">
{
"red": "rouge",
"blue": "bleu",
"green": "vert"
}
</script>
</amp-state>
<!-- 2. On select: set new state of selectedColor -->
<amp-selector
layout="container"
on="select:AMP.setState({selectedColor: event.targetOption})">
<div option="red">rouge</div>
<div option="blue">bleu</div>
<div option="green">vert</div>
</amp-selector>
<!-- 3. Bind the selectedColor value as identifier for the colorMap -->
<p>Selected Color <span [text]="colorMap[selectedColor]"></span></p>
colorMap
初始化为预定义的<amp-state>
selectedColor
的新状态设置为单个字符串(而不是具有key:value的对象)selectedColor
值作为colorMap
的标识符请注意,颜色图和选择器的值必须相同。我希望使用模板引擎。
答案 1 :(得分:0)
我通过在每个选项上设置amp-bind找到了解决方案。
<amp-state id="selectedColor">
<script type="application/json">
{
"value": "",
"text": ""
}
</script>
</amp-state>
<p>Selected Color <span [text]="selectedColor.value"></span></p>
<amp-selector
layout="container"
on="select:AMP.setState({
selectedColor: {
value: event.targetOption
}
})">
<div option="red"
on="tap:AMP.setState({
selectedColor: {
text: rouge
}
})">rouge</div> <!-- user select this -->
<div option="blue"
on="tap:AMP.setState({
selectedColor: {
text: bleu
}
})">bleu</div>
<div option="green"
on="tap:AMP.setState({
selectedColor: {
text: vert
}
})"
>vert</div>
</amp-selector>