親ビューがありますindex.html
<html>
<head>
<script src = "assets/js/angular.min.js"></script>
<script src = "../lib/js/angular-ui/angular-ui-router.js"></script>
<script src = "app.js"></script>
<script src = "controllers/profile/ProfileController.js"></script>
</head>
<body ng-app="myApp">
<div class="links">
<div class='profile'><a ui-sref="profile">Profile</a></div>
<div class='dashboard'><a ui-sref="dashboard">Dashboard</a></div>
</div>
<div class="container">
<div ui-view></div>
</div>
</body>
</html>
のapp.js
var app = angular.module('myApp',['ui.router']);
app.config(['$stateProvider', '$urlRouterProvider',function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('profile', {
url: "modules/profile/templates",
templateUrl: "modules/profile/templates/profile.html",
controller: 'ProfileController'
}).state('dashboard', {
url: "modules/dashboard/templates",
templateUrl: "modules/dashboard/templates/index.html"
}).state('profile.viewprofile', {
url: "modules/profile/templates",
templateUrl: "modules/profile/templates/viewprofile.html",
controller: 'ProfileController'
}).state('profile.createprofile', {
url: "modules/profile/templates",
templateUrl: "modules/profile/templates/createprofile.html",
controller: 'ProfileController'
});
}
]);
これは私のprofile.html
<div >
<div class="links">
<h3 class="heading">Profile</h3>
<div class='viewprofile'><a ui-sref="profile.viewprofile">View Profile</a></div>
<div class='createprofile'><a ui-sref="profile.createprofile">Create Profile</a></div>
<div class='editprofile'><a ui-sref="profile.editprofile">Edit Profile</a></div>
</div>
<div class="content>
<div ui-view="profile.viewprofile@"></div>
<div ui-view="profile.createprofile@"></div>
</div>
</div>
私の中でProfileController
app.controller('ProfileController',function($scope, $http){
$scope.allProfiles = function(){
$http.get('objects/getallprofiles.php').success(function (data, status, headers, config) {
console.log(data);
});
}
コンソールに表示されるデータは
Array
(
[0] => Array
(
[id] => 1
[0] => 1
[fname] => sdds
[1] => sdds
[lname] => sddssd
[2] => sddssd
[mobile] => 333
[3] => 333
)
)
ページviewprofile
内をクリックすると、レンダリングされます。しかし、関数の値を子ビューに取得し、それらをhtmlタグにバインドしたいprofile.html
viewprofile.html
allProfiles()
viewprofile
allProfiles()
コントローラーにある関数出力を子ビューに取得するにはどうすればよいですかviewprofile.html