不在本地存储Nativescript的html数据中显示

时间:2019-05-22 10:23:19

标签: typescript local-storage nativescript

我在这段代码中有问题,因为数据没有显示在html中。

.ts代码

      myipdevice :any;
      ip:any;
      iptohtml: any;


      console.log('ip', data.value); // show 172.0.0.1
      this.myipdevice = data.value;
      let LS = require("nativescript-localstorage");
      LS.setItem(this.ip, this.myipdevice);
      LS.getItem(this.ip);
      this.iptohtml = LS.getItem(this.ip)

.html

<TextField row="0" col="1" class="textfield" [text]="iptohtml"></TextField>

0 个答案:

没有答案