如何将 amp-selector 的文本内容设置为 amp-state

How to set text content of amp-selector into amp-state

我想知道如何根据用户选择的选项获取文本内容并将其设置为amp-state。 例如,如果用户选择 "red" 选项。我想将 "rouge" 设置为 amp-state 而不是 "red"。我知道我可以在 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>

我通过在每个选项上设置 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>

你可以这样做:

<!-- 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>
  1. 初始化 colorMap 作为预定义 <amp-state>
  2. On select:将 selectedColor 的新状态设置为单个字符串(不是具有键的对象:值)
  3. 绑定 selectedColor 值作为 colorMap
  4. 的标识符

注意色图和selector的值必须一致。我更愿意使用模板引擎。