Maheshvirus
Maheshvirus

Reputation: 7553

Can we Read/Write Json data from/Into .js file using Jquery or Javascript?

Localstorage have storage limit between 5MB to 10MB depends upon browser.My question is,Is there any way to store large json data into external .js file.so we can read/write data as like localstorage??

Upvotes: 1

Views: 419

Answers (1)

Raymond Camden
Raymond Camden

Reputation: 10857

For PhoneGap (or Apache Cordova), you want to use the file system to write to the file. See the File plugin (https://www.npmjs.com/package/cordova-plugin-file) for more information.

Upvotes: 1

Related Questions