Ember在启动应用程序时执行以下操作:
if ( Ember.LOG_VERSION ) {
Ember.LOG_VERSION = false; // we only need to see this once per Application#init
Ember.debug('-------------------------------');
Ember.debug('Ember.VERSION : ' + Ember.VERSION);
Ember.debug('Handlebars.VERSION : ' + Ember.Handlebars.VERSION);
Ember.debug('jQuery.VERSION : ' + Ember.$().jquery);
Ember.debug('-------------------------------');
}
我想展示ember-data
的版本。我怎样才能做到这一点?我在VERSION
中看不到ember-data
。
答案 0 :(得分:1)
由于ember-data
仍被视为 alpha ,因此它没有版本信息。一旦核心团队开始发布RC版本,这可能会发生变化。此外,直到修订 12 ,需要定义您在商店中使用的API的修订版,如:
App.Store = DS.Store.extend({
revision: 12,
...
});
但现在在修订版 13 中删除了定义修订版的需要,因为您可以阅读here。
你唯一想到的就是读出ember-data
js文件中的第一行,如下所示:
// Last commit: 3981a7c (2013-05-28 05:00:14 -0700)
并至少提取提交哈希值和日期。
希望有所帮助
<强>更新强>
最后包含版本号,可以使用DS.VERSION
示例here进行访问。