如果我处于模板模式并且我想访问模型类变量的对面,我该怎么做?
例如我试过:*
@(myForm: Form[MyFormClass])
<input type="text" disabled="!@myForm.get.isSelected>
其中 isSelected 是一个布尔变量
但是,我收到错误:
`identifier' expected but `!' found
我环顾四周,但找不到任何东西..
如果我处于模板模式并且我想访问模型类变量的对面,我该怎么做?
例如我试过:*
@(myForm: Form[MyFormClass])
<input type="text" disabled="!@myForm.get.isSelected>
其中 isSelected 是一个布尔变量
但是,我收到错误:
`identifier' expected but `!' found
我环顾四周,但找不到任何东西..