我正在寻找一种将类名作为字符串实例化的新 ember 对象的方法:
App.MyObject = Ember.Object.extend({hello:'hello'});
//Try to do something like this.
App.myObject = Ember.create("App.MyObject", {hello:'Hello World!'});
console.log(App.myObject.hello); //productes 'Hello World!'
有没有可能做这样的事情?