我是angular的新手,我试图从使用http创建的链接中提取数据,但是似乎出现了错误。
错误TypeError:无法读取未定义的属性“ toLowerCase”
我做错什么了吗?
this.configSerivce.getConfig().subscribe(data => {
console.log(data);
});
export class ConfigService {
configUrl : "http://d1vse12sdoa01.ivu-ag.com:8080/daan-rest/services/line" ;
constructor(private http: HttpClient) { }
getConfig(){
return this.http.get(this.configUrl);
}
}
答案 0 :(得分:0)
尝试
0