流星/コードを使ってiPhoneに現在のバッテリー残量を表示して反応したい。流星/コードを使ってバッテリー残量を表示して反応する
Thisは私が使用するプラグインです。
これは私が仕事にそれを想像する方法です:
export default class BatteryDetails extends Component {
constructor(props){
super(props);
this.currentBatteryLevel = 0;
function onBatteryStatus(status) {
this.currentBatteryLevel = status.level;
}
window.addEventListener("batterystatus", onBatteryStatus, false);
window.dispatchEvent(new Event('batterystatus'));
}
render() {
return (
<div>
Remaining: {this.currentBatteryLevel}
</div>
);
}
}
'render'メソッドで' this.getBatteryLevel() 'をレンダリングしようとしましたが、この関数は値を'返す 'のではないようです。 – cathalkilleen