ng2-ui / auto-complete

Angular Auto Complete component and directive
http://ng2-ui.github.io/auto-complete/
MIT License
280 stars 124 forks source link

Header Authorization #229

Closed fnalin closed 7 years ago

fnalin commented 7 years ago

IMPORTANT html: <input ngui-auto-complete [list-formatter]="autocompleListFormatter" [source]="urlEntidades" display-property-name="nomeEntidade" min-chars="2" loading-text="Carregando..." no-match-found-text="Não foram encontradas Entidades" id="entidade" class="form-control" [ngClass]="{'form-control-danger': entidadeValida && (selectEntidade.dirty || selectEntidade.touched), 'form-control-success': entidadeValida}" required name="selectEntidade"

selectEntidade="ngModel"

              placeholder="Mín. 2 caracteres"
              [(ngModel)]="entidadeSelecionada"
              autocomplete="off" />

ts: get urlEntidades() { return this._appSettingsService.urlBase('entidades/pesquisar/' + this.contextoId) + '/:keyword'; }

Other information

I need to pass a token through the header. For example: {Authorization: Bearer eyJhbGciO ...} How do I do this?

fnalin commented 7 years ago

I found this: http://plnkr.co/edit/ExzNSh?p=preview

Thanks