我正试图在离子视图中显示电池状态。我有显示网络连接解决方案。但无法显示电池状态,我已经安装了离子2电池状态插件
HTML
<h2>Battery status: {{status?.level}}</h2>
<h2>Battery is plugged:{{status?.isPlugged}}</h2>
打字稿
status:any;
constructor(public alert:AlertController, public platform: Platform) {
this.platform.ready().then(()=>{
let subscription = BatteryStatus.onChange().subscribe( (status) => {
console.log(status.level, status.isPlugged);
this.status=status.level;
});
});
}
你可以从下面的bitbucket git克隆
$ git clone https://bitbucket.org/maniselvam/ionic2battery.git
答案 0 :(得分:0)
在TS文件中导入电池状态。
import { BatteryStatus } from 'ionic-native';
声明电池状态变量
Level:any = 0;
初始化插件
let subscription = BatteryStatus.onChange().subscribe(
(status) => {
this.Level = status.level;
console.log(status.level, status.isPlugged);
}
);
<强> HTML 强>
<h1>Battery Level: {{Level}}</h1>