我有一个由两部分组成的 yii2 基本应用程序(网络和移动服务)。
我创建了一个模块来处理从 mobile 发出的宁静请求。我想将此模块配置为休息。所以我在模块目录中为这个模块创建了一个配置文件。如模块的 yii2 文档中所述
/config/config.php:
return [
'components' => [
'urlManager' => [
'class' => 'yii\web\UrlManager',
// Disable index.php
'showScriptName' => false,
// Disable r= routes
'enablePrettyUrl' => true,
'enableStrictParsing' => false,
'rules' => array(
[
'class' => 'yii\rest\UrlRule',
'controller' => 'mobile/mobile-clients',
'extraPatterns' => ['GET search' => 'search']
],
),
],
'request' => [
'class' => '\yii\web\Request',
'enableCookieValidation' => false,
'parsers' => [
'application/json' => 'yii\web\JsonParser',
],
],
]
];
模块类如下:
<?php
namespace app\modules\Mobile;
use Yii;
use yii\base\Module;
class MobileService extends Module {
public $controllerNamespace = 'app\modules\Mobile\controllers';
public function init() {
parent::init();
Yii::configure($this, require(__DIR__ .DIRECTORY_SEPARATOR
.'config'.DIRECTORY_SEPARATOR .'config.php'));
}
}
问题是请求组件没有按预期工作,而在应用程序配置(config/main.php)中配置时它工作正常
与 urlManager 相同。
有任何想法吗?