web-dev-qa-db-fra.com

Le type «URLSearchParams» n'est pas attribuable au type «URLSearchParams»

Je veux envoyer une demande http.get avec quelques paramètres de recherche à ma webapi pour obtenir une liste d'étudiants. J'ai trouvé quelques exemples sur la façon de le faire, mais après avoir fait exactement comme dans les exemples, j'obtiens cette erreur étrange:

[ts]
Type 'URLSearchParams' is not assignable to type 'URLSearchParams'. Two different types with this name exist, but they are unrelated.
Property 'rawParams' is missing in type 'URLSearchParams'.

Voici ma composante:

import { Injectable } from '@angular/core';
import { Http, Headers, Response, RequestOptions } from '@angular/http';
import 'rxjs/add/operator/map'
import { User } from '../_models/user';

@Injectable()
export class UserService {

options = new RequestOptions({ 'headers': new Headers({ 'Content-Type': 'application/json' })});

constructor(private http: Http) {
}

createAccount(newUser: User){
return this.http.post('http://localhost:64792/api/students', JSON.stringify(newUser), this.options)
.map((response: Response) => {              
    if(response.ok){
        console.log("Registration was a success");
        return true;
     } else {
         console.log("Registration failed");
         return false;
      }
 });
}

searchStudents(searchWords: Array<string>){
// Parameters obj-
 let params: URLSearchParams = new URLSearchParams();
 for(let i = 0; i < searchWords.length; i++){
 params.append('searchWords', searchWords[i]);
 }
 this.options.search = params;
 //Http request-
}
} 

Quelle pourrait être la cause de cette erreur?

20
Jesper

Il semble que le natif RLSearchParams soit déclaré dans votre code actuel, tandis que la new URLSearchParams(); renvoie angular.io's objet URLSearchParams

importer 'rxjs/add/operator/map' et ça devrait marcher.

import { URLSearchParams } from '@angular/http';
30
Thabung

Essayez d'utiliser la méthode set

searchStudents(searchWords: Array<string>){
// Parameters obj-
 let params: URLSearchParams = new URLSearchParams();
 for(let i = 0; i < searchWords.length; i++){
 params.set('searchWords', searchWords[i]);
 }
 this.options.search = params;
 //Http request-
}
1
Pramod Patil