我在WebAPI中创建了一个api,如下所示。
public HttpResponseMessage Get() {
var response = Request.CreateResponse(HttpStatusCode.OK);
response.Content = new StringContent(JsonConvert.SerializeObject("Hello World"), Encoding.UTF8, "application/json");
return response;
}
我试图从Angular中调用它,如下所示
Service.ts
@Injectable()
export class DemoService {
constructor(private http:Http){}
GetHttpData(){
return this.http.get('http://localhost:54037/api/home')
.map((res:Response)=>res.json());
}
组件:
export class AppComponent implements OnInit {
data2: String;
constructor(private s: DemoService){}
ngOnInit(){
this.s.GetHttpData().subscribe(data=>this.data2=data);
console.log("Http call completed: "+this.data2);
}
在运行应用程序时,我得到输出:
Http调用完成:未定义
有人可以帮忙吗?
由于
答案 0 :(得分:1)
将console.log
放入数据函数中。
你能尝试这样吗。
export class AppComponent implements OnInit {
data2: String;
constructor(private s: DemoService){}
ngOnInit(){
this.s.GetHttpData().subscribe(data=>{
this.data2=data;
console.log("Http call completed: "+this.data2)
});
}
答案 1 :(得分:0)
尝试在这里使用一个简单的承诺。
在Service.ts(演示服务)
GetHttpData() {
return new Promise(resolve => {
this.http.get('http://localhost:54037/api/home')
.map(res => res.json())
.subscribe(data => {
resolve(data);
});
}
并在组件中
this.s.GetHttpData()
.then(data => {
console.log("Http call completed: "+data);
});