我在Laravel 5.1中使用Zizaco/entrust。我想通過使用複選框明確授予特定角色的權限。這是我的代碼:在Vue JS和Laravel 5.1中檢查特定角色的權限+ Entrust
抓取角色:
fetchRoles: function(){
this.$http.get('api/role',function(data){
this.$set('roles',data);
});
}
正在獲取權限:
fetchPermissions: function(){
this.$http.get('api/permission',function(data){
this.$set('permissions',data);
});
}
這裏是分配角色和權限表:
<table class="table table-bordered table-responsive">
<thead>
<th>Permissions/Roles</th>
<th v-for="role in roles">
@{{ role.display_name }}
</th>
</thead>
<tbody>
<tr v-for="permission in permissions">
<td>@{{ permission.display_name }}</td>
<td v-for="role in roles">
<input type="checkbox" value="@{{ permission.id }}" name="roles[@{{ role.id }}][permissions][]">
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
<button type="submit" class="btn btn-primary">Alter Permission</button>
</td>
</tr>
</tfoot>
</table>
輸出是一樣: Screenshot of Output
個權限也被下面的方法成功地分配:
public function changePermission(Request $request){
$input = $request->all();
$roles = Role::all();
foreach($roles as $role)
{
$permissions_sync = isset($input['roles'][$role->id])? $input['roles'][$role->id]['permissions'] : [];
$role->perms()->sync($permissions_sync);
}
Flash::success('Successfully modified permissions!');
return redirect()->back();
}
我在正在檢查的箱子stucked唯一的檢查,如果角色擁有特定的權限。
我可以做到以下幾點,如果它是PHP對象:
@if(count($permissions)>0)
@foreach($permissions as $permission)
<tr>
<td>{{$permission->display_name}}</td>
@if(count($roles)>0)
@foreach($roles as $role)
<td><input type="checkbox" value="{{$permission->id}}" name="roles[{{$role->id}}][permissions][]" @if($role->hasPermission($permission->name)) checked="checked" @endif></td>@endforeach @endif </tr> @endforeach @endif
我怎樣才能在Vue公司JS使用調用hasPermission()方法?
你使用的是一個組件還是這個單一的vue實例嗎? –
嘿賈斯汀,這是在一個單一的VUE實例。 – sazanrjb