这是我的代码ng-style="background: {{x.background}}"
什么呈现ng-style="background: #f4f4f4"
我期待style="background: #f4f4f4"
我认为正确的指令是ng-attr-style
,检查文档
尝试这个:
ng-style="{ background: x.background}"
这更接近于 json。事实上,您可以拥有一个 json 对象并直接使用它。
改变这个
ng-style="background: {{x.background}}"
进入
ng-attr-style="background: {{x.background}}"