Home Backend Development PHP Tutorial Yii2 implements three-level linkage examples of provinces and municipalities in China

Yii2 implements three-level linkage examples of provinces and municipalities in China

Mar 23, 2017 pm 02:10 PM

Yii2 realizes the three-level linkage instance of China's provinces and municipalities

Installation

Add to your composer.json file

"chenkby/yii2-region": "dev-master"
Copy after login

Switch to the project Directory

composer update;

3. Configuration

1) Add the following method in the model of the region

public static function getRegion($parentId=0)
{
  $result = static::find()->where(['parent_id'=>$parentId])->asArray()->all();
  return ArrayHelper::map($result, 'id', 'name');
}
Copy after login

2) In the controller Add the following action

public function actions()
{
  $actions=parent::actions();
  $actions['get-region']=[
    'class'=>\chenkby\region\RegionAction::className(),
    'model'=>\app\models\Region::className()
  ];
  return $actions;
}
Copy after login

3) Add enablePrettyUrl of urlManager in main.php in common/config, that is, 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>" 
  ],
],
Copy after login

4. Use

<?= $form->field($model, &#39;district&#39;)->widget(\chenkby\region\Region::className(),[
  &#39;model&#39;=>$model,
  &#39;url&#39;=> \yii\helpers\Url::toRoute([&#39;get-region&#39;]),
  &#39;province&#39;=>[
    &#39;attribute&#39;=>&#39;province&#39;,
    &#39;items&#39;=>Region::getRegion(),
    &#39;options&#39;=>[&#39;class&#39;=>&#39;form-control form-control-inline&#39;,&#39;prompt&#39;=>&#39;选择省份&#39;]
  ],
  &#39;city&#39;=>[
    &#39;attribute&#39;=>&#39;city&#39;,
    &#39;items&#39;=>Region::getRegion($model[&#39;province&#39;]),
    &#39;options&#39;=>[&#39;class&#39;=>&#39;form-control form-control-inline&#39;,&#39;prompt&#39;=>&#39;选择城市&#39;]
  ],
  &#39;district&#39;=>[
    &#39;attribute&#39;=>&#39;district&#39;,
    &#39;items&#39;=>Region::getRegion($model[&#39;city&#39;]),
    &#39;options&#39;=>[&#39;class&#39;=>&#39;form-control form-control-inline&#39;,&#39;prompt&#39;=>&#39;选择县/区&#39;]
  ]
]);
?>
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's study. I also hope that everyone will support the PHP Chinese website.

MoreYii2 implements three-level linkage examples of provinces and municipalities in ChinaFor related articles, please pay attention to the PHP Chinese website!

Related articles:

Use PHP to realize three-level linkage in urban areas with attached database

js to realize the effect of three-level linkage menu in provinces and municipalities

Example code to implement ajax three-level linkage drop-down menu

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? Apr 01, 2025 pm 03:09 PM

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...

See all articles