我是Yii的新手,并且不确定是否可以从网址获取操作和控制器名称:
/my_proj/backend/web/index.php?r=user%2Fcreate
我需要让他们进入控制器(php
)或客户端(jQuery
)。
我需要它,因为按钮点击:
<?= Html::button(Yii::t('app', Yii::t('app','Create')), ['value' => Url::to(['create']),'class' => 'btn btn-success modalButton', 'id' => 'create-user']) ?>
我想检查当前用户是否具有create
操作的权限。我在客户端需要这个,因为我在模态对话框中显示创建视图,如果用户没有权限,我不需要显示弹出窗口。
$(".modalButton").click(function(){
var permission = ?? //$(this)[0].id; //id works ok, but looking for another way
$.get('index.php?r=site/check-permission', {'permission': permission}, function(isAllowed){
if(isAllowed == 1)
{
$(".modal").modal("show")
.find(".modalContent")
.load($(".modalButton").attr('value'));
}
});
return false;
});
我尝试使用id
作为按钮,并在那里指定权限,但寻找其他解决方案。
答案 0 :(得分:0)
我认为这就是你所需要的 在视图文件中 -
$this->uniqueid - controller name
$this->action->Id - action name.
// ($this is CController instance)
这是针对当前控制器的
<?php echo $this->getUniqueId();?>
或强>
Yii::app()->controller->id
或强>
Yii::app()->getController()->getId()
或强>
是的,您可以通过撤消urlManager规则来获取当前的控制器/操作路径:
Yii::app()->urlManager->parseUrl(Yii::app()->request)