クラス名を文字列として使用して、新しい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!'
このようなことをする可能性はありますか?