码迷,mamicode.com
首页 > 编程语言 > 详细

Yii2返回以主键id为键名的数组

时间:2017-11-18 23:46:57      阅读:2072      评论:0      收藏:0      [点我收藏+]

标签:html   integer   cti   span   ext   string   str   ret   active   

branch.php

<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "branch".
 *
 * @property integer $id
 * @property string $name
 *
 */
class Branch extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return branch;
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [[name], string, max => 45],
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            id => ID,
            name => Name,
        ];
    }
  public static function getKeyValuePairs()
    {
        $sql = SELECT id, name FROM  . self::tableName() .  ORDER BY name ASC;
    
        return Yii::$app->db->createCommand($sql)->queryAll(\PDO::FETCH_KEY_PAIR);
    }
}

 

调用

$model->getKeyValuePairs()得到如下:

技术分享图片

 

显示在前端:

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;
use app\models\Branch;
/* @var $this yii\web\View */
/* @var $model app\models\Pos */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="pos-form">

    <?php $form = ActiveForm::begin(); ?>

    <?= $form->field($model, serial)->textInput([maxlength => true]) ?>
    <?= $form->field($model, branch_id)->dropDownList(Branch::getKeyValuePairs())  ?>
    
    <?= $form->field($model, is_enable)->checkBox() ?>

    <div class="form-group">
        <?= Html::submitButton($model->isNewRecord ? Create : Update, [class => $model->isNewRecord ? btn btn-success : btn btn-primary]) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>

 

Yii2返回以主键id为键名的数组

标签:html   integer   cti   span   ext   string   str   ret   active   

原文地址:http://www.cnblogs.com/xiong63/p/7857985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!