无法识别的起始字符
unrecognized start character
我想使用变量设置对象的属性,我读到可以用 &attributes
完成,但我似乎无法让它工作。
- var attributes = { type: 'text' };
input&attributes
应该产生:
<input type="text" />
但是我收到这个错误:
unrecognized start character
您需要实际将 attributes
变量传递给 &attributes
:
- var attributes = { type: 'text' };
input&attributes(attributes)
我想使用变量设置对象的属性,我读到可以用 &attributes
完成,但我似乎无法让它工作。
- var attributes = { type: 'text' };
input&attributes
应该产生:
<input type="text" />
但是我收到这个错误:
unrecognized start character
您需要实际将 attributes
变量传递给 &attributes
:
- var attributes = { type: 'text' };
input&attributes(attributes)