我正在使用现有的Web Api(ASP.NET Core)在角度2中实现一个新的Web应用程序,但是我遇到了HTTP Post的问题。在搜索了所有类型的信息之后,我仍然无法解决这个问题,而且我的Web API仍然从角度帖子中接收到空参数。
我需要看看这里有什么问题。 这是我的Angular 2代码:
posted(event) {
@Injectable()
export class httpTestComponent {
constructor(public http: Http) {
};
posted(event) {
var user: UserViewModel = {
name: "angularUser",
password: "pw",
email: "angularMail"
}
let pedido = JSON.stringify(user);
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
this.http.post('http://localhost:10832/api/Account/Register', { pedido }, options)
.map(this.extractData).catch(this.handleError).subscribe();
};
视图模型:
export interface UserViewModel {
name: string,
password: string,
email: string,
}
Web API:
[HttpPost]
[Route("Register")]
public void Register([FromBody] UserRegisterViewModel userVm)
{
}
ViewModel WEB API:
public class UserRegisterViewModel
{
public string name { get; set; }
public string password { get; set; }
public string email { get; set; }
}
有人能告诉我在哪里错了吗?
答案 0 :(得分:7)
没有理由添加JSON.stringify()
。尝试删除它。
编辑:
删除JSON.stringify()
或删除身体数据周围的大括号:
this.http.post('http://localhost:10832/api/Account/Register', pedido, options)
Angular将尝试序列化已经序列化的JSON字符串作为对象,如果你这样做,这就是你遇到问题的原因。
源代码:Link