local server api: http://localhost:8000/heroes.json
角度ts代码
this.http.get('http://localhost:8000/heroes.json')
.map(res => res.text())
.subscribe(
data => this.randomQuote = data,
err => this.logError(err),
() => console.log('Random Quote Complete')
);
但收到了错误:
答案 0 :(得分:3)
您已将loca t 主机放入网址,而不是本地 l 主机。
作为此类问题的提示,如果您确认网址在浏览器中有效,请将其复制并粘贴到代码中,以确保您使用的内容与您确认的内容相同工作。