Ember.js View not displaying Ember.TextField {{view Ember.TextArea valueBinding=“Name” name=“Name”}}
问题 I want to show this input so I may edit a category's 'Name', but the view is not displaying. The result is only the Names for each Category appearing on the list. Each category should have it's own input with a value set to the 'Name' for that Category. I am not receiving any errors, so what am I doing incorrectly? {{#each}} <tr> <td> {{view Ember.TextField valueBinding="Name" name="Name"}} <label class="category-text"> {{#linkTo 'category' this}} {{Name}} {{/linkTo}} </label> </td> </tr> {{