- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Angular 服务,我尝试发送 HTTP Post 请求并设置Content-Type
header 到 application/x-www-form-urlencoded
这是代码:
import { HttpClient, HttpHeaders } from '@angular/common/http';
export class UserService {
constructor(private http:HttpClient, private bodyParser:BodyParserService{}
public login(username:String, password:String){
let body = this.bodyParser.parseBody({username: username, password: password})
const options = {
headers: new HttpHeaders({'Content-Type': 'application/x-www-form-urlencoded'})
};
this.http.post(`${environment.apiUrl}/login`, body, options)
.subscribe((response:any) => {
console.log("Response", response);
})
}
}
我正在使用 Angular7。我使用 Chrome 浏览器,但在 FireFox 上问题仍然存在
我收到以下错误:
ERROR TypeError: url__WEBPACK_IMPORTED_MODULE_2__.URLSearchParams is not a constructor
at BodyParserService.push../src/app/services/body-parser.service.ts.BodyParserService.parseBody (body-parser.service.ts:12)
at UserService.push../src/app/services/user-service.service.ts.UserService.login (user-service.service.ts:21)
at LoginModalComponent.push../src/app/nav-bar/nav-bar.component.ts.LoginModalComponent.login (nav-bar.component.ts:50)
at Object.eval [as handleEvent] (LoginModalComponent.html:19)
at handleEvent (core.js:19545)
at callWithDebugContext (core.js:20639)
at Object.debugHandleEvent [as handleEvent] (core.js:20342)
at dispatchEvent (core.js:16994)
at core.js:17441
at HTMLButtonElement.<anonymous> (platform-browser.js:993)
我已经确定我已经导入了 HttpClientModule
bodyParser 服务:
import { Injectable } from '@angular/core';
import { URLSearchParams } from 'url';
@Injectable({
providedIn: 'root'
})
export class BodyParserService {
constructor() { }
public parseBody(bodyObject: Object): string {
const body = new URLSearchParams();
Object.keys(bodyObject).forEach(key => {
body.set(key.toString(), bodyObject[key]);
});
return body.toString();
}
}
好吧,我发现了我的错误:URLSearchParams 似乎已被弃用。我现在已经使用 HttpParams 来代替:
const body = new HttpParams();
最佳答案
URLSearchParams 已弃用,您必须使用 HttpParams。例如
let params = new HttpParams()
.set('grant_type', 'password')
.set('username', username)
.set('password', password);
params.toString();
关于angular - URLSearchParams 不是构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54610734/
我想向我的 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
我是一名优秀的程序员,十分优秀!