gpt4 book ai didi

javascript - 传递到 polymer 元件的数据不完整

转载 作者:行者123 更新时间:2023-12-02 14:03:20 26 4
gpt4 key购买 nike

请原谅菜鸟问题,我已被添加到使用 polymer 的项目中,但我无法弄清楚我做错了什么。

我有以下组件:

  <template>
<div class="hb-graph">
<h3 class="hb-graph__headline">[[headline]]</h3>
<div class="hb-graph__container">
<div class="hb-graph__graph"
style="width:[[barWidth]]%">
</div>
<div class="hb-graph__rates">
<span class="hb-graph__bar-value">
[[barValue]]
</span>
<span class="hb-graph__bar-value-rate">
[[barValueRate]]
</span>
</div>
<span class="hb-graph__beginning-range hb-graph__range">
0
</span>
<span class="hb-graph__final-range hb-graph__range">
[[maxValue]]
</span>
</div>
</div>
</template>

<script>
Polymer({
is: "horizontal-bar-graph",
properties: {
headline: String,
maxValue: String,
barValue: String,
barValueRate: String,
barWidth: Number
}
});
</script>

当我将此元素加载到 html 模板中时,呈现的最终产品中出现的唯一值是标题。

<horizontal-bar-graph headline="Total Current Flow"
maxValue="4000"
barValue="3,300"
barValueRate="m3/h"
barWidth=82.5>
</horizontal-bar-graph>

为什么其他值在渲染时不显示?

最佳答案

Here您可以找到有关它的文档。

Attribute names with dashes are converted to camelCase property names by capitalizing the character following each dash, then removing the dashes. For example, the attribute first-name maps to firstName.

所以,这应该有效:

<horizontal-bar-graph headline="Total Current Flow"
max-value="4000"
bar-value="3,300"
bar-value-rate="m3/h"
bar-width=82.5>
</horizontal-bar-graph>

关于javascript - 传递到 polymer 元件的数据不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40228809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com