我有一些问题,在我的 Ionic 应用程序中使用切换开关来打开/关闭功能。默认情况下toggle为true,当toggle更改时切换为false。
<ion-toggle ng-model="myToggle.checked" ng-change="myToggleChange()">
Toggle
</ion-toggle>
使用应用程序时一切正常,但是如果我关闭应用程序并且在我再次加载应用程序时关闭之前开关为假,则当我的控制器启动时,默认情况下切换为真。重新加载应用程序后缓存切换如何在关闭前有位置?控制器:
$scope.myToggleChange = function() {
if($scope.myToggle.checked == true){
console.log('Is True', $scope.myToggle.checked);
}
if($scope.myToggle.checked == false){
console.log('Is False', $scope.myToggle.checked);
}
};
$scope.myToggle = { checked: true };