Loading big json file

I’m having trouble loading a big json file via http. My code is based off the ion-conference code and it works for a smaller json file so I think it must be because of the file size.

Also, loading the big json file works in my browser but not in Ionic View. What’s the solution for this? Use mongodb?

Cordova CLI: 6.5.0
Ionic Framework Version: 2.0.0
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.0.0
ios-deploy version: 1.9.0
ios-sim version: 5.0.13
OS: macOS Sierra
Node Version: v7.2.1
Xcode version: Xcode 8.2.1 Build version 8C1002

What’s the latency to the source? And how big is “big”?

okay fixed it… the problem was that I was using the json file to instantiate too many objects. I changed the classes to interfaces and now everything loads.

thanks, though!