Last active
December 22, 2015 00:09
-
-
Save chewbakartik/6386870 to your computer and use it in GitHub Desktop.
This file contains 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
App.Router.map(function() { | |
return this.resource("modelsA", function() { | |
this.resource("modelA", { path: ":modelA_id" }, function() { | |
return this.resource("modelsB", function() { | |
this.resource("modelB", { | |
path: ":modelB_id" | |
}); | |
return this.route("new") | |
}); | |
}); | |
this.route("new"); | |
}); | |
}); | |
App.ModelsBController = Ember.ObjectController.extend({ | |
needs: ['modelA'], | |
save: function() { | |
transaction = this.get('store').transaction(); | |
var modelB = transaction.createRecord(App.ModelB, { | |
name: this.get('name'), | |
modelA: ****CAN'T FIGURE OUT HOW TO GET REFERENCE TO THE MODEL A RECORD HERE.*** | |
}); | |
return transaction.commit(); | |
} | |
}); | |
// Path to the new form for the Model B record is modelsA/[ID#]/modelsB/new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment