VueJS:v-bind:样式仅在v-for中有条件地工作

时间:2017-05-11 14:38:22

标签: javascript vue.js v-for

绑定v-bind:style时,使用color可以正常工作:

<p v-bind:style="{ color: '#' + tradingCardOption.BorderColorHex }">
  {{ tradingCardOption.ColorSetName }}
</p>

但是,绑定到background-color不起作用:

v-bind:style="{ background-color: '#' + tradingCardOption.BorderColorHex }" 

并且都没有绑定到border-top

v-bind:style="{ border-top: 15px solid + '#' + tradingCardOption.CornerColorHex }"

什么可能导致这种条件有效?

<div v-for="tradingCardOption in tradingCardOptions">
  <div v-bind:style="{ background-color: '#' + tradingCardOption.BorderColorHex}" class="color-swatch " v-bind:class="{'selected' : $index == 0}" v-on:click="selectTradingCardOption(tradingCardOption, $event)">
    <div v-bind:style="{ border-top: 15px solid + '#' + tradingCardOption.CornerColorHex}"></div>
  </div> {{ tradingCardOption.BorderColorHex}}
  <p v-bind:style="{ color: '#' + tradingCardOption.BorderColorHex}"> {{ tradingCardOption.ColorSetName }}</p>
</div>

1 个答案:

答案 0 :(得分:6)

如果使用非有效标识符的键名,则必须正确引用对象键。所以v-bind:style="{ background-color: '#' + tradingCardOption.BorderColorHex}"

必须是

v-bind:style="{'background-color': '#' + tradingCardOption.BorderColorHex}"

因为background-color不能用作对象属性键,除非用引号括起来。与border-color相同,应该是:

{'border-top': '15px solid #' + tradingCardOption.CornerColorHex}

基本上,您需要确保解析器不会尝试将-字符解释为减号,然后认为border是变量。