我有不同的html頁面,用戶登錄後,我有不同的數據被髮回,我將不得不使用一些這數據連同我的下一篇文章到另一個html頁面中的url。例如,如果用戶應該登錄,如果用戶已經被認證,我將得到用戶ID,性別以及一些其他數據用於另一個頁面,因爲我必須將其與其他活動一起發送。我如何使用從另一個html文件json響應獲取的數據使用角js
做這樣的事情捆綁或SharedPreferences在JAVA
這是代碼爲我的登錄頁面
<script>
var app = angular.module('myapp', [])
app.controller('empcontroller', function($scope, $http){
$scope.insertdata=function(){
console.log("triggered");
$http({
method: 'POST',
url: "myurl",
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
transformRequest: function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
data: {username: $scope.fname, pswd: $scope.lname}
})
.success(function(data, status, headers, config) {
var mssg = data.MESSAGE;
iqwerty.toast.Toast(mssg);
console.log(data);
if (data.RESULT === 1) {
window.location.href = 'homes.html';
} else {
$scope.errorMsg = "Login not correct";
}
})
.error(function(data, status, headers, config) {
$scope.errorMsg = 'Unable to submit form';
})
}});</script>
這是結果我在控制檯日誌{ 「RESULT」 獲得:1, 「MESSAGE」:「SUCCESSFUL」,「EMPID」:「2223444」} 如何在另一個html頁面中使用我的數據(這是我的請求發送給給定url後的結果)(angularjs controller ..在另一個html文件中)。我怎麼能在另一個HTML頁面使用這個相同的用戶名..因此,我要發送用戶名和EMPID ..在我的其他HTML頁面
使用表單。這裏是一個很好的例子: [another_answer](http://stackoverflow.com/a/13001878/1489912) – Manatax
我使用的是angularjs ...而不是javascript ...感謝您的參考。 –
angular.js是一個JavaScript庫我的朋友.... – Manatax