How should I get the value of this input field?
问题 I am using a subexpression at {{input value=(cents-to-dollars model.amountInCents)}} . It is using a custom helper to convert the value from cents to dollars. My API returns cents. However in the controllers save action, console.log(this.get('model.amountInCents')); returns undefined . Am I missing something? Maybe name or valueBinding in the input helper? If I remove the subexpression. console.log(this.get('model.amountInCents')); outputs fine. // Routes import Ember from 'ember'; export