第一次玩指令。我正在尝试制作一个包含可点击行的列表,它还没有做太多,但我一直在试图弄清楚如何让模型符合指令。
这是指令:
var tsUui=angular.module('ts-user-ui',[]);
tsUui.directive('userList', function(){
return{
restrict: 'A',
template: '<table>'+
'<tr>'+
'<th>User Name</th>'+
'<th>First Name</th>'+
'<th>Last Name</th>'+
'<th>Email Address</th>'+
'</tr>'+
'<tr ng-repeat="user in '+users+'" ng-click="selectUser(user, $event)">'+
'<td>{{user.UserName}}</td>'+
'<td>{{user.FirstName}}</td>'+
'<td>{{user.LastName}}</td>'+
'<td>{{user.Email}}</td>'+
'</tr>'+
'</table>',
scope:{
selectedUser: '=',
users: '='
},
link: function (scope, elem, attrs){
var users=attrs.usersModel;
scope.selectedUser = function(user, event){
event.stopPropagation&&event.stopPropagation();
event.preventDefault&&event.preventDefault();
event.cancelBubble=!0;
event.returnValue=!1;
selectedUser=user;
};
}
}
});
我在这里设置了它:
<div user-list data-users-model="Users"></div>
并且页面使用这个控制器:
function userListController($scope, User){
$scope.users = User.query();
}
tsAdminApp.controller('userListController', ['$scope', 'User', userListController]);
使用此服务:
angular.module('userServices', ['ngResource']).
factory('User', function($resource){
return $resource('/admin/user/service',{}, {
query: {method:'GET', params:{},isArray:true}
});
});
我知道控制器和服务工作,因为我在没有指令的情况下实现了列表。
当我打开带有指令的页面时,控制台会出现错误:未定义用户,指向我的指令中带有模板的行:'<tr ng-repeat="user in '+users+'" ng-click="selectUser(user, $event)">'+
如何在其中获取我的用户资源?