在 JHipster 中包含 angular-touch
Include angular-touch in JHipster
我正在尝试将 angular-touch 包含到我的 JHipster 应用程序中。因此我做了以下步骤:
我安装了 angular-touch with bower。我使用了命令 "bower install angular-touch".
然后我将 angular-touch js 文件包含在我的 index.html 的头部,如下所示
script src="/bower_components/angular-touch/angular-touch.js"/>
然后我像这样在 app.js 中添加了 angular 触摸
angular.module('myApp', ['ngTouch']);
我总是收到未捕获的类型错误:无法读取未定义的 属性 'module'
我做错了什么?我认为脚本未正确包含。我应该在我的 jHipster 应用程序中的什么地方包含脚本?
是的,我已经检查过了。模块未加载。问题是我在页面顶部的 head 中包含了脚本,而不是在 bootom 中。当我将页面与其他脚本一起包含在底部时,一切都运行良好。
我正在尝试将 angular-touch 包含到我的 JHipster 应用程序中。因此我做了以下步骤:
我安装了 angular-touch with bower。我使用了命令 "bower install angular-touch".
然后我将 angular-touch js 文件包含在我的 index.html 的头部,如下所示
script src="/bower_components/angular-touch/angular-touch.js"/>
然后我像这样在 app.js 中添加了 angular 触摸 angular.module('myApp', ['ngTouch']);
我总是收到未捕获的类型错误:无法读取未定义的 属性 'module'
我做错了什么?我认为脚本未正确包含。我应该在我的 jHipster 应用程序中的什么地方包含脚本?
是的,我已经检查过了。模块未加载。问题是我在页面顶部的 head 中包含了脚本,而不是在 bootom 中。当我将页面与其他脚本一起包含在底部时,一切都运行良好。