mardi 12 juillet 2016

Not able to push the form data in to the ember store

this is my controller code controllers/new-user.js

   import Ember from 'ember';
   export default Ember.ObjectController.extend({
   actions:{
      register:function(){
        var person=this.store.createRecord('person'{
         firstName:fname,
         lastName:sname,
         email:email,
         password:password,
         confirmPassword:confirmPassword
        });
        person.save();
     }
   }
   });

I am working with ember-cli and i am new to ember so could you please tell me what is wrong in the code.




Aucun commentaire:

Enregistrer un commentaire