Angular2/Nativescript : Issues converting a service that used to use LocalStorage to one that uses nativescript-application/settings

标签 angular angular2-nativescript

我正忙于开发一个简单的条形码扫描仪应用程序,并尝试将在网络应用程序中使用 LocalStorage 的服务转换为使用应用程序设置来保存本地 IP。该应用程序构建得很好,但是当它部署到 genymotion 模拟器时,我收到以下错误。知道为什么会发生这种情况吗? 因此,问题似乎出在应用程序设置的 getString 和/或 setString 方法上。我从使用 LocalStorage 的 Web 应用程序复制了一项服务,并将 localStorage 替换为 appSettings,将 getItem 替换为 getString 和 setString...我是否缺少 Nativescript 的 getString 和 setString 中的某些内容?我认为它的工作方式与 LocalStorage 浏览器 API 完全相同...

我的错误:

JS: EXCEPTION: Error in ./AppComponent class AppComponent_Host - inline template:0:0 caused by: Unexpected token u in JSON at position 0
JS: ORIGINAL EXCEPTION: Unexpected token u in JSON at position 0
JS: ORIGINAL STACKTRACE:
JS: SyntaxError: Unexpected token u in JSON at position 0
JS:     at Object.parse (native)
JS:     at AppSettingsService.findLocalIP (/data/data/org.nativescript.barcodescanner/files/app/services/app-settings.service.js:19:25)
JS:     at AppComponent.ngOnInit (/data/data/org.nativescript.barcodescanner/files/app/app.component.js:13:42)
JS:     at Wrapper_AppComponent.detectChangesInInputProps (/AppModule/AppComponent/wrapper.ngfactory.js:18:53)
JS:     at DebugAppView._View_AppComponent_Host0.detectChangesInternal (/AppModule/AppComponent/host.ngfactory.js:30:26)
JS:     at DebugAppView.AppView.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:9305:18)
JS:     at DebugAppView.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:9410:48)
JS:     at ViewRef_.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:7398:24)
JS:     at /data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:6819:88
JS:     at Array.forEach (native)
JS: ERROR CONTEXT:
JS: [object Object]
JS: ns-renderer: ERROR BOOTSTRAPPING ANGULAR
JS: ns-renderer: Error in ./AppComponent class AppComponent_Host - inline template:0:0 caused by: Unexpected token u in JSON at position 0
JS:
JS: SyntaxError: Unexpected token u in JSON at position 0
JS:     at Object.parse (native)
JS:     at AppSettingsService.findLocalIP (/data/data/org.nativescript.barcodescanner/files/app/services/app-settings.service.js:19:25)
JS:     at AppComponent.ngOnInit (/data/data/org.nativescript.barcodescanner/files/app/app.component.js:13:42)
JS:     at Wrapper_AppComponent.detectChangesInInputProps (/AppModule/AppComponent/wrapper.ngfactory.js:18:53)
JS:     at DebugAppView._View_AppComponent_Host0.detectChangesInternal (/AppModule/AppComponent/host.ngfactory.js:30:26)
JS:     at DebugAppView.AppView.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:9305:18)
JS:     at DebugAppView.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:9410:48)
JS:     at ViewRef_.detectChanges (/data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:7398:24)
JS:     at /data/data/org.nativescript.barcodescanner/files/app/tns_modules/@angular/core/bundles/core.umd.js:6819:88
JS:     at Array.forEach (native)
8:46:00 AM - Compilation complete. Watching for file changes.

我的app.component.ts:

import { Component, OnInit } from "@angular/core";
import { RouterExtensions } from 'nativescript-angular/router';
import { RestService } from './services/rest.service';
import { AppSettingsService } from './services/app-settings.service';


@Component({
    selector: "main",
    template : "<page-router-outlet></page-router-outlet>"
})
export class AppComponent implements OnInit {

    constructor(private restService: RestService, private appSettingsService: AppSettingsService, private routerExtensions: RouterExtensions) {

    }

    ngOnInit() {
        let ip = this.appSettingsService.findLocalIP();
           if (ip !== null) {
               this.restService.init(ip);
           } else if (ip === null) {
               this.routerExtensions.navigate(['settings']);
        }
}

我的应用程序设置.服务:

import { Injectable } from '@angular/core';
import * as appSettings from 'application-settings';

@Injectable()
export class AppSettingsService {

saveLocalIP(ip: string): void {
  let localData = appSettings.getString('retail_mobile');
  if (localData) {
    localData = JSON.parse(localData);
  } else {
    localData = "";
 }
let saveData = {localIP:ip};
appSettings.setString('retail_mobile', JSON.stringify(saveData));   
}

findLocalIP() {
   let data = JSON.parse(appSettings.getString('retail_mobile'));
   if (data === null) {     
    console.log("No entry found in local storage...");
    return null;
   }

if(data && !data.localIP) {
    console.log("no local ip found in localStorage...")
    return null;
}

return data.localIP;
}

constructor() { }
}

最佳答案

您的 ngOnInit 正在调用服务中的 findLocalIP() 方法,这就是错误发生的地方。

您的问题应该在以下行中:

let data = JSON.parse(appSettings.getString('retail_mobile'));

它正在尝试解析无法解析的内容。

这里的问题似乎是不匹配。 appSettings.getString 返回一个字符串,因此无法解析。通过删除 JSON.parse 应该可以清除问题。

let data = appSettings.getString('retail_mobile')

如果你想/需要使用 JSON,这是我所期望的,你必须实际将其转换为 json 并以某种方式返回,例如如下所示。虽然不太漂亮,但应该可以用。

findLocalIP() {
   let d = appSettings.getString('retail_mobile'); // add
   let d1 = JSON.stringify(d); // make it json
   let data = JSON.parse(d1); // now parse it
   if (data === null) {     
    console.log("No entry found in local storage...");
    return null;
   }

只是用 string/json 设置一个示例:

retail_mobile = "{ 某事: "某事"}" 这可能看起来像 JSON,但事实并非如此,它是一个字符串。

如果您尝试 console.log(JSON.parse(retail_mobile)) 它会抛出您所遇到的错误。

在解析之前,您实际上必须对其进行JSON.stringify,因此按此顺序执行以下命令不会产生错误:

retail_mobile = "{ something: "something" }"
let data = JSON.stringify(retail_mobile); 
console.log(JSON.parse(data));

作为对您的评论,指出错误指向 .js 文件。在运行时,TS 被编译为 JS,因此它不知道也不关心 TS 文件,因此错误指向 JS 文件。

关于Angular2/Nativescript : Issues converting a service that used to use LocalStorage to one that uses nativescript-application/settings,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41500946/

相关文章:

angular - 具有特定时区的 Material 日期选择器

javascript - 错误类型错误 :Cannot read property 'forEach' of undefined in Angular

angular - 如何在 RxJS/Angular 的两个不同点捕获错误?

angular - Angular 2 内部组件

Angular 导航强制新组件

触发新警报时以编程方式关闭警报

NativeScript UI 自动完成未编译

angular - 在 nativescript 中完成键盘后获取 TextField 文本属性

javascript - Angular2 : Directive variable change, 更新元素

android - 应用程序如何在 Nativescript 中检测到它将被卸载?