admin管理员组文章数量:1340548
I have been trying loading a local json file present in my project folder of Angular 2 using http get method. Look at the following example code snippet:
private _productURL = 'api/products/products.json';
getProducts(): Observable<any> {
return this._http.get(this._productURL).map((response : Response) => <IProduct[]> response.json())
.do(data =>console.log(JSON.stringify(data))).catch(this.handleError);
}
Now when I'm trying to load it with internet connected, it's working. But when I'm turing on the offline checkbox from the browser developer options(), the json stops loading again. It starts showing me error in console about No internet connection and doesn't load anything.
Is there any other way to do this? or using http get..how to do it?
I have been trying loading a local json file present in my project folder of Angular 2 using http get method. Look at the following example code snippet:
private _productURL = 'api/products/products.json';
getProducts(): Observable<any> {
return this._http.get(this._productURL).map((response : Response) => <IProduct[]> response.json())
.do(data =>console.log(JSON.stringify(data))).catch(this.handleError);
}
Now when I'm trying to load it with internet connected, it's working. But when I'm turing on the offline checkbox from the browser developer options(https://developers.google./web/tools/chrome-devtools/network-performance/reference#offline), the json stops loading again. It starts showing me error in console about No internet connection and doesn't load anything.
Is there any other way to do this? or using http get..how to do it?
Share Improve this question asked Apr 11, 2017 at 12:02 Kush GroverKush Grover 3731 gold badge6 silver badges16 bronze badges 4- do you want to load it from a json var if there is no connection or that you want to store a copy once you have a connection and load it if there is no connection? – Ofer Herman Commented Apr 11, 2017 at 12:46
- I have a long json array stored in a seprate file which will not change..i.e. it will be static..so it will go as a part of my project – Kush Grover Commented Apr 11, 2017 at 13:03
- so why load it using http? – Ofer Herman Commented Apr 11, 2017 at 14:49
- I searched on internet.. This is what I got.. What is the other way? – Kush Grover Commented Apr 11, 2017 at 17:27
1 Answer
Reset to default 16You can import a json
file if you do as follows:
create a json-typings.d.ts file with:
declare module "*.json" {
const value: any;
export default value;
}
this is a wildcard module definition that allows us to import non javascript files in this case JSON files.
you should now be able to import json files to your project:
import * as products from "./products.json";
本文标签: javascriptUsing angular 2 http offline when loading JSON in local project folderStack Overflow
版权声明:本文标题:javascript - Using angular 2 http offline when loading JSON in local project folder - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743641170a2514736.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论