下拉列表多级联动dropDownList示例代码
本文为大家详细介绍下下拉列表多级联动 dropDownList具体的实现代码,感兴趣的朋友可以参考下哈,至于一些细节部分后续再补
视图:
cdnauto/views/config/index.php
复制代码 代码如下:
echo CHtml::dropDownList('node', '', CHtml::listData(Node::model()->findAll(),'name','name'),array('empty'=>'--请选择节点--',
'id' => 'node',
'ajax'=>array(
'type'=>'POST',
'url'=>Yii::app()->createUrl('cdnauto/config/getNodeServersByNodeName'),
'update'=>'#servers',
'data'=>array('node_name'=>'js:$("#node").val()'),
)
)
);
echo "
";
echo CHtml::dropDownList('servers', '', array('--请选择服务器--'));
控制器:
cdnauto/controllers/ConfigController.php
复制代码 代码如下:
public function actionGetNodeServersByNodeName(){
// if(!Yii::app()->request->isAjaxRequest)
// throw new CHttpException(404);
$node_name = $_POST['node_name'];
$nodeid = Node::model()->getNodeId($_POST['node_name']); //通过节点名称获取该节点ID
$server = GossServer::model()->getServerByNodeid($nodeid); //通过节点ID获取服务器信息
//$server 为array类型,美国空间,形如 $server = array(array('name'=>'name1'),array('name'=>'name2'));所以需要两次foreach
if(isset($server)){
foreach ($server as $k=>$v){
foreach($v as $kk => $vv){
echo CHtml::tag('option', array('value'=>$kk), CHtml::encode($vv), true);
}
}
}else{
echo CHtml::tag('option', array('value'=>''), 'servers', true);
}
}
模型:
GossServer.php
复制代码 代码如下:
/**
* 通过节点ID获取该节点下所有的服务器名称
* @author ysdaniel
*/
public static function getServerByNodeid($nodeid)
{
$sql = "SELECT name FROM OSS_Server WHERE nodeid = '{$nodeid}' ";
///$sql = "SELECT name,nodeid FROM OSS_Server WHERE nodeid = '{$nodeid}' "; //both ok
$cmd = Yii::app()->db->createCommand($sql);
$ret = $cmd->queryAll();
if (!$ret){
throw new Exception("找不到这个节点对应的服务器");
}
return $ret;
}
Node.php
复制代码 代码如下:
/**
* 通过nodename获取nodeid名
* @author
*/
public static function getNodeId($name)
{
$sql = "SELECT id FROM OSS_Node WHERE name = '{$name}'";
$cmd = Yii::app()->db->createCommand($sql);
$ret = $cmd->queryAll();
if (!$ret){
return null;
//throw new Exception("找不到Node{$name}");
}
return $ret[0]['id'];
}
其它:
数据表结构
效果:
没有选择节点前:
细节有空再补上了。 ,服务器空间,网站空间

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use Vue and Element-UI to implement multi-level drop-down box function Introduction: In web development, multi-level linkage drop-down box is a common interaction method. By selecting an option in a drop-down box, the contents of subsequent drop-down boxes can be dynamically changed. This article will introduce how to use Vue and Element-UI to implement this function, and provide code examples. 1. Preparation First, we need to ensure that Vue and Element-UI have been installed. It can be installed via the following command: npmins

How to use CSS to create a custom style effect for a drop-down list. In web design, the drop-down list (DropdownList) is one of the common interactive elements. It can provide the selection function of options to facilitate user operations. However, the browser's default drop-down list style may not meet the design needs, so you need to use CSS to set a custom style. This article will introduce how to use CSS to create custom style effects for drop-down lists, with specific code examples. Creating the basic HTML structure First, I

Binding method: 1. Use the DataSource property to bind data: set the data source to the DataSource property of DropDownList and call the DataBind() method to bind data; 2. Use the DataBind() method to bind data: directly use the DataBind() method Binding; 3. Use SqlDataSource control to bind data; 4. Use Entity Framework to bind data; 5. Use LINQ to Entities to bind

Vue.js is a popular front-end framework, and many websites use Vue.js to develop interactive UIs. One common UI component is a multi-level menu (also called a cascading selector), which allows users to filter a list of one option by selecting another option, allowing for more granular search or navigation capabilities. In this article, we will introduce how to use Vue.js to implement a multi-level linkage menu. Preparation Before we begin, we need to make sure we have Vue.js installed.

In front-end development, a Dropdownlist is often used to display a set of options and allow the user to select an option from them. The HTML part defines a Dropdownlist, which contains three options. The JavaScript part shows how to get the value of Dropdownlist and how to listen to the change event of Dropdownlist. Additionally, the usage of Dropdownlist may vary depending on the specific front-end framework or library.

How to handle multi-level linkage and data federation query of form data in Java? In web application development, multi-level linkage of form data and joint data query are very common requirements. As a widely used programming language, Java provides rich functions and tools when dealing with these requirements. This article will introduce how to handle multi-level linkage and data federation query of form data in Java, and provide corresponding code examples. 1. Multi-level linkage Multi-level linkage means that when the user selects an option in the first-level drop-down box, the content of the next-level drop-down box will be

Vue component development: Multi-level linkage selector implementation In front-end development, multi-level linkage selector is a common requirement, such as province and city selection, year, month and day selection, etc. This article will introduce how to use Vue components to implement multi-level linkage selectors, with specific code implementation examples. How to implement multi-level linkage selector? Implementing multi-level linkage selectors requires the use of Vue's component development idea, which splits a large selector into several sub-components, which are responsible for rendering each level of options. Each time the level selection changes, the subsequent

PHP form processing: Tips for using multi-select boxes, radio buttons and drop-down lists In web development, forms are one of the important ways for users to interact with the website. The multi-select boxes, radio buttons and drop-down lists in the form are some common user input options. This article will introduce how to use PHP to process these form elements and give corresponding code examples. Multi-select box A multi-select box allows the user to select multiple options. In HTML, you can use <inputtype="checkbox"&g
