我的 angularjs 应用程序中有两个页面,我从数据库中获取一些数据以显示在表格中,然后双击一行并转到另一个页面以显示更多详细信息。问题在于如何将数据从第一页发送到第二页,让他们知道我有我需要在我的变量“分支”中显示的所有数据,我在第一页中显示了其中的一些,这里是我的代码的一部分:
var app= angular.module('MyApp' , []);
app.controller('Ctrl', function($scope, $http){
$http.get('http://localhost:8080/Test_WS/test/branchs/brnch')
.then(function(response) {
$scope.branchs = response.data;
})
.then(function(response) {
$scope.details = function (b) {
window.location = 'http://localhost:8080/TestProject/CreateBranch.html';
};
});
});