我無法找到任何有關在Ember.js應用程序的不同部分使用CamelCase vs snake_case vs dash-s的明確指導。CamelCase vs snake_case vs Ember.js應用程序中的破折號應用程序
以下哪種情況是推薦的,如果我用另一種替換,會有什麼影響?
this.route('favoriteAuthor')
this.route('favorite_author')
this.route('favorite-author')
this.modelFor('favoriteAuthor')
this.modelFor('favorite_author')
this.modelFor('favorite-author')
this.get('store').find('favoriteAuthor')
this.get('store').find('favorite_author')
this.get('store').find('favorite-author')
{{render 'favoriteAuthor'}}
{{render 'favorite_author'}}
{{render 'favorite-author'}}
this.controllerFor('favoriteAuthor')
this.controllerFor('favorite_author')
this.controllerFor('favorite-author')
this.transitionTo('favoriteAuthor')
this.transitionTo('favorite_author')
this.transitionTo('favorite-author')
感謝,
是的,這是幾乎清晰的唯一部分。 「幾乎」,因爲它也適用於名爲「sample-test」的模板。不知道會有什麼區別,但... – arkadiy