질문:
사이트 컨트롤러의 작업에 어떻게 액세스하나요? 그림과 같이:
해결책:
1. 디렉터리를 만듭니다.
먼저 위와 같이 디렉터리 구조를 만듭니다. api와 디렉터리에는 Module.php 파일이 있습니다.
<?php namespace app\modules\api; /** * api module definition class */ class Module extends \yii\base\Module { /** * @inheritdoc */ public $controllerNamespace = 'app\modules\api\controllers'; /** * @inheritdoc */ public function init() { parent::init(); // custom initialization code goes here } }
(추천 튜토리얼: yii Framework)
2.web.php
프로젝트 루트 디렉터리의 config 폴더에 web.php 파일이 있다는 것을 기억하시나요? 다음 필드:
<?php $params = require __DIR__ . '/params.php'; $db = require __DIR__ . '/db.php'; $config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'aliases' => [ '@bower' => '@vendor/bower-asset', '@npm' => '@vendor/npm-asset', ], 'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation 'cookieValidationKey' => 'jjsYJ_ju0W8ifOv5mY3JBMI6DOppFlo6', ], 'cache' => [ 'class' => 'yii\caching\FileCache', ], 'user' => [ 'identityClass' => 'app\models\User', 'enableAutoLogin' => true, ], 'errorHandler' => [ 'errorAction' => 'site/error', ], 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => true, ], 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], 'db' => $db, /* 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ ], ], */ ], 'modules' => [ 'api' => [ 'class' => 'app\modules\api\Module', ], ], 'params' => $params, ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', // uncomment the following to add your IP if you are not connecting from localhost. //'allowedIPs' => ['127.0.0.1', '::1'], ]; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', // uncomment the following to add your IP if you are not connecting from localhost. //'allowedIPs' => ['127.0.0.1', '::1'], ]; } return $config;
3. api 컴포넌트 컨트롤러
이제 Modules/api/controllers 아래에 새 SiteControllers.php를 생성합니다. 내용은 다음과 같습니다.
<?php namespace app\modules\api\controllers; use yii\web\Controller; class SiteController extends Controller { public function actionIndex() { echo "hello world"; } }
4. 마지막으로 브라우저는 이 actionIndex에 액세스합니다. , 브라우저는 http://localhost/basic/web/index.php?r=api/site/index
완료!
프로그래밍과 관련된 더 많은 내용은 PHP 중국어 홈페이지
프로그래밍 입문위 내용은 Yii 프레임워크는 사용자 정의 모듈 아래의 컨트롤러에 어떻게 액세스합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!