AngularJS,无法添加模块

时间:2016-02-22 15:12:31

标签: javascript angularjs d3.js

所以我对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

有什么建议吗?如果您需要更多代码,我可以发布。

1 个答案:

答案 0 :(得分:1)

可能它会发生因为D3不是一个角度模块。

您可以尝试使用以下链接执行此操作:https://github.com/WealthBar/angular-d3

或者您可以封装在服务或工厂中并从中进行调用。