2016-03-15 58 views

回答

1

讓這發生在你的plunker的index.html

<script> 


angular.module("example", ["ngStorage"]) 
.controller("ExampleController", function($scope, $localStorage) { 

$scope.save = function() { 
$localStorage.message = $scope.zafer; 
console.log(zafer); 
} 

$scope.load = function() { 
$scope.zafer = $localStorage.message; 

} 

}) 

</script> 
</head> 
<body ng-app="example"> 
<div ng-controller="ExampleController" ng-init="load()"> 

<input type="text" ng-model="zafer"> 

<button ng-click="save()">Update</button> 



</div> 
</body> 
+0

謝謝你的朋友。它的工作 – hicaz

+0

的朋友,不適用於ios。 android正在工作。當頁面刷新時,返回數據。但ios不工作。你知道爲什麼嗎 ? – hicaz

相關問題