- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Sonata Admin Bundle,但在使用该功能时遇到了一些问题:
function configureRoutes(RouteCollection $collection){ }
$collection->remove('create');
$seguridad = $this->getConfigurationPool()->getContainer()->get('security.context');
if ($seguridad->getToken()->getUser() != "anon."){
if ( !$seguridad->isGranted('ROLE_ADMIN') ) {
$collection->remove('create');
}
}
最佳答案
我只是用不同的方式,只是在entitAdmin.php 文件中覆盖了isGranted()。然后您可以根据用户角色检查权限。但它达到了我们的目的。如果我们想使用 $collection->remove('create'),我们不能这样做,因为无法在应用程序运行时调用该方法 ("configureRoutes()")。仅在创建缓存时调用该方法(“configureRoutes()”)。
/**
* {@inheritdoc}
*/
public function isGranted($name, $object = null)
{
$user = $this->getConfigurationPool()->getContainer()->get('security.context')->getToken()->getUser();
switch ($name) {
case "CREATE":
if (!$user->hasRole("ROLE_ADMIN")) {
return false;
}
default:
return true;
}
}
关于symfony - Sonata Admin Bundle 删除 routeCollection 角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16296089/
路由配置: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) {
你能说出 RouteCollection 和 Route Table 的区别吗? 我尝试了很多在 Google 上进行搜索。但找不到任何引用资料。 最佳答案 RouteTable是一个存储应用程序 U
我不得不将我的 ASP.Net 4.5.2 应用程序降级到 ASP.Net 4.0。当然这会带来问题,比如未安装的引用正确的。我已经解决了其中的一些问题,但我无法理解错误: CS106 'RouteC
RouteCollection.Ignore(url, constraints)和RouteCollection.IgnoreRoute(url, constraints)有什么区别? 背景 新的MV
我随处看到的 MVC 风格路由的示例是这样的: void Application_Start(object sender, EventArgs e) { RegisterRoutes(Rout
我正在 VS 2008(带有 SP1)中开发一个网站(Web 表单,而不是 MVC)。我正在尝试合并 ASP.NET 路由。我正在按照 MSDN 教程进行操作。 http://msdn.microso
我一直在开发一个纯 MVC CMS 的乐趣,并且遇到了一个令人讨厌的 ASP.NET 路由错误/功能。 我的 CMS 中的每个动态 托管页面都与从数据库中提取的特定路由相关联。这些在应用程序启动时加载
Laravel:当有人访问后路由而不提供后路由参数时,如何防止 RouteCollection.php 中的 MethodNotAllowedHttpException? 当我定义一个 post 路由
我正在使用 Sonata Admin Bundle,但在使用该功能时遇到了一些问题: function configureRoutes(RouteCollection $collection){ }
welcome {{
路由文件 Route::get('/home', 'HomeController@index')->name('home'); Route::get('/' , ['as' => '/', 'uses
我在 iis7 上运行的 asp.net mvc 代码中随机出现两个异常: Exception type: InvalidOperationException Exception message: C
当我存储帖子时出现此错误 MethodNotAllowedHttpException in RouteCollection.php line 219: 什么会导致这个问题?? 路由.php: Rout
我这里有这些路由声明 //Skill Route::get('skill','SkillController@index'); Route::get('skill/create','SkillCont
我收到此错误: Sorry, the page you are looking for could not be found. 1/1 NotFoundHttpException in RouteCo
routes.php Route::get('/',array('uses'=>'student@index')); Route::get('/view',array('uses'=>'student
这是我的global.asax(注册路由) routes.MapRoute("NewDatabase", "Server/{serverId}/Instances/{in
我目前正在开发一个论坛系统 (laravel 5.3),我收到一个错误,可能是因为我的路由设置有问题。 name('index'); Auth::routes(); Route::get('/
我正在开发 Laravel 5 应用程序,我有这条路线 Route::get('/go','UrlController@index'); 在这个 UrlController.php 中,我有这个索引方
我遵循 SignalR wiki 页面中的示例,这是我的 Global.asax : void Application_Start(object sender, EventArgs e
我是一名优秀的程序员,十分优秀!