Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过表单传递一个参数,并希望将其存储在模板的隐藏字段中。这是如何在 emberjs 中完成的?我从这里的文档中看到你可以这样做:
{{view Ember.TextField valueBinding="firstName"}}
但是如何制作一个隐藏的呢?还是隐藏的文本字段不应该在前端处理?
只需使用输入视图助手,并提供字段的类型:
{{input type="hidden" valueBinding="firstName"}}
input助手是 的快捷方式,{{view Ember.TextField ...}}因此使用:
input
{{view Ember.TextField ...}}
{{view Ember.TextField type="hidden" valueBinding="firstName"}}
是一样的。