Yii2는 중국 성, 자치단체의 3단계 연계 인스턴스를 구현합니다
설치
composer.json 파일에 추가
"chenkby/yii2-region": "dev-master"
스위치 프로젝트 디렉토리
composer update;
3. 구성
1) 지역 모델에 다음 메소드를 추가합니다
public static function getRegion($parentId=0) { $result = static::find()->where(['parent_id'=>$parentId])->asArray()->all(); return ArrayHelper::map($result, 'id', 'name'); }
2) 컨트롤러에서 다음 액션
public function actions() { $actions=parent::actions(); $actions['get-region']=[ 'class'=>\chenkby\region\RegionAction::className(), 'model'=>\app\models\Region::className() ]; return $actions; }
을 추가합니다. 3) common/config의 main.php에 urlManager의 활성화PrettyUrl을 추가합니다. 즉, hide index.php
"urlManager" => [ //用于表明urlManager是否启用URL美化功能,在Yii1.1中称为path格式URL, // Yii2.0中改称美化。 // 默认不启用。但实际使用中,特别是产品环境,一般都会启用。 "enablePrettyUrl" => true, // 是否启用严格解析,如启用严格解析,要求当前请求应至少匹配1个路由规则, // 否则认为是无效路由。 // 这个选项仅在 enablePrettyUrl 启用后才有效。 "enableStrictParsing" => false, // 是否在URL中显示入口脚本。是对美化功能的进一步补充。 "showScriptName" => false, // 指定续接在URL后面的一个后缀,如 .html 之类的。仅在 enablePrettyUrl 启用时有效。 "suffix" => "", "rules" => [ "<controller:\w+>/<id:\d+>"=>"<controller>/view", "<controller:\w+>/<action:\w+>"=>"<controller>/<action>" ], ],
4를 사용합니다. >
<?= $form->field($model, 'district')->widget(\chenkby\region\Region::className(),[ 'model'=>$model, 'url'=> \yii\helpers\Url::toRoute(['get-region']), 'province'=>[ 'attribute'=>'province', 'items'=>Region::getRegion(), 'options'=>['class'=>'form-control form-control-inline','prompt'=>'选择省份'] ], 'city'=>[ 'attribute'=>'city', 'items'=>Region::getRegion($model['province']), 'options'=>['class'=>'form-control form-control-inline','prompt'=>'选择城市'] ], 'district'=>[ 'attribute'=>'district', 'items'=>Region::getRegion($model['city']), 'options'=>['class'=>'form-control form-control-inline','prompt'=>'选择县/区'] ] ]); ?>위의 내용이 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되기를 바랍니다. 또한 모든 분들이 PHP 중국어 웹사이트를 지지해 주시길 바랍니다. 더 보기
Yii2는 중국 성, 자치단체의 3단계 연계 예시를 구현합니다관련 글은 PHP 중국어 홈페이지를 주목해주세요!
관련 기사:PHP를 사용하여 데이터베이스가 연결된 도시 지역의 3단계 연결 구현