次の場合:
App.User = DS.Model.extend({
firstName: DS.attr('string')
});
のタイプを判別する方法はありfirstName
ますか?
次の場合:
App.User = DS.Model.extend({
firstName: DS.attr('string')
});
のタイプを判別する方法はありfirstName
ますか?
JavaScriptを使用できますtypeof
:
// Find the type of the first model's firstName.
console.log(typeof userController.objectAt(0).get('firstName'));
Ember.JSにも組み込みのtypeOf
:Ember.typeOf
がありますが、この場合、私が見る限り、利点はありません。
私は答えを見つけました:
App.User.metaForProperty('firstName').type