我是Angular的新手。
我有WebAPI控制器,它包含返回一些数据的get方法。
与浏览器分开启动时工作正常。
从Angular app调用相同的方法时,不会在WebAPI控制器中调用get方法。
这是我调用get方法的代码。
this.http.get('http://localhost:49422/api/CustomerRegister');
先谢谢。
答案 0 :(得分:1)
在angular中,您需要订阅http.get方法
this.http.get('http://localhost:49422/api/CustomerRegister').subscribe(result => this.result =result);