Im trying to integrate ng2-file-upload module into my application.
And im getting this template error: Can\'t bind to \'uploader\' since it isn\'t a known property o
add to app.module.ts this
import { FileSelectDirective } from 'ng2-file-upload';
@NgModule({
imports: [
...
],
declarations: [
FileSelectDirective
],
providers: [
...
],
bootstrap: [
App,
],
})
https://github.com/valor-software/ng2-file-upload/issues/418#issuecomment-249865170
Or try to import FIleUploadModule to an each parent module
import { FIleUploadModule } from 'ng2-file-upload';
imports: [
FIleUploadModule,
..........,
........,
......,
]
It should work.