- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想向我的 webapi 发送带有一些搜索参数的 http.get 请求以获取学生列表。我找到了一些关于如何执行此操作的示例,但是在完全按照示例中的操作进行操作之后,我得到了这个奇怪的错误:
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'.
这是我的组件:
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-
}
}
什么可能导致此错误?
最佳答案
好像是原生URLSearchParams声明为您当前的代码,而 new URLSearchParams();
返回 angular.io 的 URLSearchParams object
import 'rxjs/add/operator/map'
它应该可以工作。
import { URLSearchParams } from '@angular/http';
关于angular - 类型 'URLSearchParams' 不可分配给类型 'URLSearchParams',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43256265/
我想向我的 webapi 发送带有一些搜索参数的 http.get 请求以获取学生列表。我找到了一些关于如何执行此操作的示例,但是在完全按照示例中的操作进行操作之后,我得到了这个奇怪的错误: Type
快速提问: 是否可以合并 URLSearchParams 的两个实例? const params1 = new URLSearchParams(); const params2 = new URLSe
我要搜索 params并添加 params到 URL,但每次都得到空数组。 示例网址 - http://localhost:3000/buildings?search_query=test&page=
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题?通过 editing this post 添加详细信息并澄清问题. 去年关闭。 Improve this
在 React Native 中,我想做一个 URLSearchParams 的抽象,所以我写了这个类: export class HttpSearchParamsAdapter extends UR
我们正在使用 jest mock 。 enzyme用于在我们的应用程序中呈现。 在这里,我试图模拟 URLSearchParams的 get方法。 我试着用 jest.spyOn(URLSearchP
我有一个 Angular 服务,我尝试发送 HTTP Post 请求并设置Content-Type header 到 application/x-www-form-urlencoded 这是代码: i
我需要制作类似 example.com?want[]=1,2,3&want[]=1,2,3&want[]=1,2,3 的 URL> let params = new URLSearchParams()
这很奇怪,使用 DW CC 2018(万一这是问题所在),当我在我的 HTML 页面的脚本标记内使用 URLSearchParams 时,它不会被标记为“错误”。 我将 URLSearchParams
以前我用过 import { Http, Response, Headers, URLSearchParams } from "@angular/http"; API 调用 getprojectsc
我正在尝试使用 Node URL 和 URLSearchParams API 来简化 URL 构建。我正在使用它来构建这样的 URL: https:///oauth/authorize?respons
我需要提取 filter这是来自 URL 字符串的对象数组:http://localhost:3006/menus?page=1&filter[0][id]=MenuID&filter[0][valu
我正在使用查询参数,并被介绍给 URLSearchParams .我正在使用它来形成这种要查询的对象, const x = { a: 'hello World' b: 23 c: '' }
在我的网站上,我重写了所有网址。但是现在我已经开始使用 AJAX 进行投票功能(它是一个问答社区),但存在一些问题: 我将 new UrlSearchParams(window.location.se
如何将字符串数组值转换为 Javascript 数组对象? var querystring = 'lang[]=EN&lang[]=FR&type[]=1&type[]=2'; 进入: { l
为什么timeperiod为空 const url = 'http://example.com?timeperiod=lasttwentyeightdays&pagesize=20' const ar
这至少在 Chrome 中。如果我的窗口的 URL 是 https://www.google.com/search?q=JavaScript+URLSearchParams我在 JavaScript
我使用 URLSearchParmas 构建了一个带有查询参数的 oauth2 url API。但是,输出 URL 没有返回预期的 URL。谁能帮我理解这两个 API 之间的区别以及如何获得与 enc
我在使用 URLSearchParams 时遇到此错误 TypeError: url__WEBPACK_IMPORTED_MODULE_2__.URLSearchParams is not a con
我有一个项目使用来自isomorphic-fetch的fetch polyfill。我想使用 URLSearchParams 来提交 POST 数据。为了让 fetch 支持 URLSearchPar
我是一名优秀的程序员,十分优秀!