我在这段代码中有问题,因为数据没有显示在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>