https://github.com/danialfarid/ng-file-upload
我试图使用此模块ngFileUpload。
但是当我在ng-view调用的模板中使用时,它无法正常工作。
这是工作 HTML(的index.html)
<div ngf-select ng-model="files"></div>
但这不起作用
HTML(的index.html)
<div ng-view></div>
HTML(的test.html)
<div ngf-select ng-model="files"></div>
JS(angular config)
$routeProvider.when('/test', {
templateUrl: '/test.html',
controller: 'testController'
任何人都有同样的问题吗?
- 谢谢你的阅读..-