2015-12-29 20 views
6

Vorrei aggiungere un'intestazione personalizzata alla mia richiesta del segugio, ecco il mio codice ma non funziona.intestazioni personalizzate tipo bloodhound bloodhound

var datasource = new Bloodhound({ 
    datumTokenizer: Bloodhound.tokenizers.whitespace, 
    queryTokenizer: Bloodhound.tokenizers.whitespace, 
    remote: { 
     url: url, 
     prepare: function (query, settings) { 
      var authHeaders; 
      settings.type = "POST"; 
      settings.data = param + '=' + query; 
      settings.headers = { 
       'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') 
      }; 


      return settings; 
     }, 
     wildcard: '%QUERY' 
    } 
}); 

Qualche idea?

+0

Potrebbe trovare una soluzione per questo? –

+0

@KunalDethe dare un'occhiata al mio voto rifiutato senza motivo risposta – vietnguyen09

+0

https://stackoverflow.com/a/46927923/3966458 –

risposta

5

Il modo per aggiungere intestazioni personalizzate per typeahead.js v0.11.0 è:

var bloodhound = new Bloodhound({ 
datumTokenizer: function (d) { 
    return Bloodhound.tokenizers.whitespace(d.value); 
}, 
queryTokenizer: Bloodhound.tokenizers.whitespace, 

remote: { 
    url: 'https://server/api/v1/clients?auth_token=3000193534a97fc4a252ddfc966e3ef178c071e4079d35ce4b', 
    prepare: function (query, settings) { 
    settings.url = settings.url + '&q=' + query 
    settings.headers = { 
     "Authorization": "Basic " + btoa("username:password") 
    }; 

    return settings; 
    } 
}, 
limit: 5 });