login(user:any){
的console.log(用户);
const body = username=${user.username}&password=${user.password}
;
const headers = new Headers();
headers.append('Content-Type','application / x-www-form-urlencoded');
返回this.apiService.post(this.url,body,headers);
}
答案 0 :(得分:0)
转到您尝试将表单信息发送到的服务器,以允许content-type
并允许origin from
您发送信息的来源,例如从http://frontend.com
发送信息到backend.com
,您需要将http://frontend.com
添加到后端origin
以允许来自该来源的请求,否则它不会允许来自该来源。
如果您正在使用后端框架,请务必检查 CORS 设置