所以我对public static double getRenderScale(Screen screen) throws NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
Method m;
try {
m = Screen.class.getDeclaredMethod("getScale"); // until 8u60 b15
} catch (NoSuchMethodException e) {
m = Screen.class.getDeclaredMethod("getRenderScale");
}
m.setAccessible(true);
return ((Float) m.invoke(screen)).doubleValue();
}
还很陌生,我似乎无法添加额外的模块,例如AngularJS
代表图。
所以我添加新模块的代码是
d3
但是如果我尝试添加 (function() {
'use strict';
angular
.module('infographicsModule', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngMessages', 'ngAria', 'ngResource', 'ui.router', 'ui.bootstrap', 'toastr']);
})();
作为附加模块,则会抛出错误
d3
有什么建议吗?如果您需要更多代码,我可以发布。
答案 0 :(得分:1)