使用包 - http://indexiatech.github.io/ember-forms。我试图从表格中保存一些信息
{{#em-form action="submit" model=model submit_button=showSubmitButton}}
{{em-input type="text" property="username" label="username" }}
{{em-input type="email" property="emailid" label="email" }}
{{em-input type="password" property="password" label="password"}}
<button class="btn btn-primary"> save </button>
{{/em-form}}
我正在尝试保存数据,并且它正确地将数据存储在后端。由于某种原因,它没有清除表单值。
现在我正在使用某种jugaad修复程序在保存数据后删除这些值。任何帮助都会很棒。