https://github.com/danialfarid/ng-file-upload
我正在尝试使用这个模块 ngFileUpload。
但是当我在 ng-view 调用的模板中使用它时它不起作用。
这是工作 HTML(index.html)
<div ngf-select ng-model="files"></div>
但这不起作用
HTML(索引.html)
<div ng-view></div>
HTML(test.html)
<div ngf-select ng-model="files"></div>
JS(角度配置)
$routeProvider.when('/test', {
templateUrl: '/test.html',
controller: 'testController'
任何人都有这样的问题吗?
-感谢您阅读..-