当前位置:首页 > CMS教程 > 其它CMS > 列表

yii框架表单模型使用及以数组形式提交表单数据示例

发布:smiling 来源: PHP粉丝网  添加日期:2020-11-25 14:07:05 浏览: 评论:0 

这篇文章主要介绍了yii框架表单模型使用及以数组形式提交表单数据示例,需要的朋友可以参考下。

按Yii文档里的描述,Yii在处理表单的一般过程是:

创建表单对应的模型类,设置字段验证规则

创建表单提交对应的action,处理提交的内容

在视图中创建表单form

在刚刚的一个小项目里,想使用ajax提交表单信息并验证保存,又不想用隐藏iframe来做无刷新提交,并且action中能够用到模型类的校验方法,就想到使用表单数组提交的方式,举个例子:

form代码:

  1. <form action='' method='post' name='form_test'> 
  2.     <input type='text' name='arr[]' value='1'> 
  3.     <input type='text' name='arr[]' value='2'> 
  4.     <input type='text' name='arr[]' value='3'> 
  5. </form> 

提交后可以直接使用 $_POST['arr'] 来获取提交的数据,$_POST['arr'] 为:

  1. Array 
  2.     [0] => a 
  3.     [1] => b 
  4.     [2] => c 

同理,如果使用以下form提交:

  1. <form action='' method='post' name='form_test'
  2.     <input type='text' name='arr[3]' value='a'
  3.     <input type='text' name='arr[6]' value='b'
  4.     <input type='text' name='arr[8]' value='c'
  5. </form> 
  6. $_POST['arr'] 为: 
  7. Array 
  8.     [3] => a 
  9.     [6] => b 
  10.     [8] => c 

当然也能提交二维数组:

  1. <form action='http://127.0.0.1/zhaobolu/test.php' method='post' name='form_test'
  2.     <input type='text' name='arr[][name1]' value='a'
  3.     <input type='text' name='arr[][name2]' value='b'
  4.     <input type='text' name='arr[][name3]' value='c'
  5. </form> 
  6. $_POST['arr'] 为: 
  7.  
  8. Array 
  9.     [0] => Array 
  10.         ( 
  11.             [name1] => a 
  12.         ) 
  13.  
  14.     [1] => Array 
  15.         ( 
  16.             [name2] => b 
  17.         ) 
  18.  
  19.     [2] => Array 
  20.         ( 
  21.             [name3] => c 
  22.         ) 

这里有一个问题,如果不设置第一个子数组的key,在生成数组时会将每个值顺序在arr中添加,如果想将信息保存在一个array中,添加一个key值即可,如下:

  1. <form action='http://127.0.0.1/zhaobolu/test.php' method='post' name='form_test'> 
  2.     <input type='text' name='arr[a][name1]' value='a1'> 
  3.     <input type='text' name='arr[a][value1]' value='a2'> 
  4.     <input type='text' name='arr[b][name2]' value='b1'> 
  5.     <input type='text' name='arr[b][value2]' value='b2'> 
  6. </form> 
  7. $_POST['arr'] 为: 
  8. Array 
  9.     [a] => Array 
  10.         ( 
  11.             [name1] => a1 
  12.             [value1] => a2 
  13.         ) 
  14.     [b] => Array 
  15.         ( 
  16.             [name2] => b1 
  17.             [value2] => b2 
  18.         ) 

下面贴一下用ajax提交表单并且用yii表单模型验证的示例,首先是模型类部分,只有最简单的校验方法:

  1. <?php 
  2. class LandingForm extends CFormModel 
  3.     public $landing_title
  4.     public $landing_content
  5.     public $landing_position
  6.     public function rules() 
  7.     { 
  8.         return array
  9.             array('landing_title, landing_content''required'), 
  10.             array('landing_position''default''value'=>''), 
  11.         ); 
  12.     } 

发现个比较有意思的,就是模型类在设置参数校验的方法时,需要对每一个public参数都设置规则,如果有未设置规则的参数,在用$_POST中的表单值为模型赋值后,未设置规则的参数值将为空

action中获取表单提交的参数并且校验:

  1. $model = new LandingForm; 
  2. $model->attributes = $_POST['form']; 
  3. if($model->validate()){ 
  4.     $info = $model->attributes; 
  5.     ... 

最后是前端提交表单部分的代码,用的jquery:

  1. var info = new Object(); 
  2. info = { 'form[landing_title]': landing_title, 
  3.         'form[landing_content]': landing_content, 
  4.         'form[landing_position]': landing_position, 
  5.         }; 
  6. var url = "..."
  7.  
  8. $.post(url, info, function(rst){ 
  9.     ... 
  10. }); 

Tags: yii框架表单模型

分享到: