有没有办法在运行时获取MarionetteJS版本?
在运行时,我的意思是
console.log(Backbone.VERSION);
// or
console.log(_.VERSION);
// or
console.log(jQuery.fn.jquery); // well, this is a weird one...
我搜索了API但找不到任何类型
答案 0 :(得分:1)
如果您查看source code并搜索版本号(1.0.2),则唯一的情况是在文件顶部的注释中。
所以看起来版本号在MarionetteJS中不可用。
答案 1 :(得分:1)
有一个全局变量:
Marionette.VERSION // "2.0.3"