在我的nativescript应用中,我需要缓存Web服务返回的数据。我应该将呼叫从Web服务中获取的确切位置放在什么位置,以将其存储在appSettings中?
如果我将其放在下面指定的位置:
applicationOn(launchEvent, function (args: ApplicationEventData) {
if (args.android) {
**WEB SERVICE CALL HERE**
} else if (args.ios !== undefined) {
// For iOS applications, args.ios is NSDictionary (launchOptions).
console.log("Launched iOS application with options: " + args.ios);
}
});
它根本不会被执行。没有错误也没有例外。