我正在尝试做一个简单的帖子来调用我的wcf休息服务,结果是无效操作。 使用fiddler我看到请求不正确,但我不知道为什么不使用我的参数。 我尝试JSON.stringify但不起作用
private url ='http://localhost:34244/CitizenService.svc/register';
public customLogin(user: string, pass: string): Observable<string> {
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ method: "POST",headers: headers,body: user} );
return this.http.post(this.url, user, options)
.map(this.extractData)
.catch(this.handleError);
}
这是角与邮递员的要求
有人知道发生了什么吗?
感谢。