Last active
December 3, 2015 16:01
-
-
Save HenryVonfire/78b6a5ea8e8e84e5b2a3 to your computer and use it in GitHub Desktop.
SO example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
model:{ | |
tips: [{name:"nameTips1"},{name:"nameTips2"},{name:"nameTips3"}], | |
hiws:[{name:"nameHiws1"},{name:"nameHiws2"},{name:"nameHiws3"}] | |
}, | |
actions:{ | |
tipChange(value){ | |
this.set('eventTip', value); | |
}, | |
hiwChange(value){ | |
this.set('eventHiw', value); | |
}, | |
save(){ | |
const event = this.get('store').createRecord('event', { | |
hiws: this.get('eventHiw'), | |
tips: this.get('eventTip') | |
}); | |
event.save(); | |
} | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.4.17", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember.debug.js", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js", | |
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember-template-compiler.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment