Yii 没有检测到骆驼案例动作
Yii not detecting camel case actions
如果我声明这样的操作,Yii 会给我 404 Error
:
SiteController.php
public function actionRegisterUser()
这是我在 main.php
中的称呼
['label' => 'Register User', 'url' => ['/site/RegisterUser']],
我尝试了几种不同的组合。唯一可行的组合是两个地方的命名约定:
public function actionRegisteruser
'url' => ['/site/registeruser']
我曾经在另一个 Yii 项目 (Yii 1.0) 上工作,我可以用驼峰命名我的动作并毫无问题地调用它们。 我是否需要打开某种设置才能执行此操作?
我也试过控制器的rules
,但没有解决任何问题。
您需要像这样指定您的操作 ['/site/register-user']
。正如 documentation 所说 内联操作 :
index
becomes actionIndex
, and hello-world
becomes actionHelloWorld
在某些情况下,您需要驼峰式 link。例如,出于 SEO 目的(保持入站 links)。您可以在 Web 服务器端创建重写规则,或在应用程序端向 URL 管理器添加内联规则。示例:
'urlManager' => [
'rules' => [
'<controller:RegisterUser>/<action:\w+>'=>'register-user/<action>',
],
],
也可以编写自定义 URL rule。示例:
namespace app\components;
use yii\web\UrlRuleInterface;
use yii\base\Object;
class CarUrlRule extends Object implements UrlRuleInterface
{
public function createUrl($manager, $route, $params)
{
if ($route === 'car/index') {
if (isset($params['manufacturer'], $params['model'])) {
return $params['manufacturer'] . '/' . $params['model'];
} elseif (isset($params['manufacturer'])) {
return $params['manufacturer'];
}
}
return false; // this rule does not apply
}
public function parseRequest($manager, $request)
{
$pathInfo = $request->getPathInfo();
if (preg_match('%^(\w+)(/(\w+))?$%', $pathInfo, $matches)) {
// check $matches[1] and $matches[3] to see
// if they match a manufacturer and a model in the database
// If so, set $params['manufacturer'] and/or $params['model']
// and return ['car/index', $params]
}
return false; // this rule does not apply
}
}
并在 [[yii\web\UrlManager::rules]] 配置中使用新规则 class:
[
// ...other rules...
[
'class' => 'app\components\CarUrlRule',
// ...configure other properties...
],
]
如果我声明这样的操作,Yii 会给我 404 Error
:
SiteController.php
public function actionRegisterUser()
这是我在 main.php
['label' => 'Register User', 'url' => ['/site/RegisterUser']],
我尝试了几种不同的组合。唯一可行的组合是两个地方的命名约定:
public function actionRegisteruser
'url' => ['/site/registeruser']
我曾经在另一个 Yii 项目 (Yii 1.0) 上工作,我可以用驼峰命名我的动作并毫无问题地调用它们。 我是否需要打开某种设置才能执行此操作?
我也试过控制器的rules
,但没有解决任何问题。
您需要像这样指定您的操作 ['/site/register-user']
。正如 documentation 所说 内联操作 :
index
becomesactionIndex
, andhello-world
becomesactionHelloWorld
在某些情况下,您需要驼峰式 link。例如,出于 SEO 目的(保持入站 links)。您可以在 Web 服务器端创建重写规则,或在应用程序端向 URL 管理器添加内联规则。示例:
'urlManager' => [
'rules' => [
'<controller:RegisterUser>/<action:\w+>'=>'register-user/<action>',
],
],
也可以编写自定义 URL rule。示例:
namespace app\components;
use yii\web\UrlRuleInterface;
use yii\base\Object;
class CarUrlRule extends Object implements UrlRuleInterface
{
public function createUrl($manager, $route, $params)
{
if ($route === 'car/index') {
if (isset($params['manufacturer'], $params['model'])) {
return $params['manufacturer'] . '/' . $params['model'];
} elseif (isset($params['manufacturer'])) {
return $params['manufacturer'];
}
}
return false; // this rule does not apply
}
public function parseRequest($manager, $request)
{
$pathInfo = $request->getPathInfo();
if (preg_match('%^(\w+)(/(\w+))?$%', $pathInfo, $matches)) {
// check $matches[1] and $matches[3] to see
// if they match a manufacturer and a model in the database
// If so, set $params['manufacturer'] and/or $params['model']
// and return ['car/index', $params]
}
return false; // this rule does not apply
}
}
并在 [[yii\web\UrlManager::rules]] 配置中使用新规则 class:
[
// ...other rules...
[
'class' => 'app\components\CarUrlRule',
// ...configure other properties...
],
]