Yii2 $ model-> load(Yii :: $ app-> request-> post())不会从表单加载数据

时间:2017-11-17 13:00:35

标签: php database forms yii

当我取出条件加载数据时它将它保存到db,$ _POST获取值但不会将它们发送给控制器,这种方式适用于我的其他项目但不在此处。如果我使用if(isset($_POST['money']) && isset($_POST['username'])){保存数据,则可以使用load()函数。

控制器

public function actionSend() {
    $model = new User();
    $model->getErrors();
    if ($model->load(Yii::$app->request->post())) {
        $model->money = 'something';
        $model->username = 'something';
        $model->save();
    }
    return $this->render('send', [
        'model' => $model
    ]);
}

模型

<?php

namespace app\models;
use yii\db\ActiveRecord;

use Yii;

class User extends \yii\db\ActiveRecord {
    public static function tableName() {
        return 'user';
    }

    public function rules() {
        return [
            [['username', 'money'], 'safe'],
            [['username', 'password'], 'string', 'max' => 15],
            [['auth_key', 'access_token'], 'string', 'max' => 32],
            [['money'], 'string', 'max' => 8],
        ];
    }

    public function attributeLabels() {
        return [
            'id' => 'ID',
            'username' => 'Username',
            'password' => 'Password',
            'auth_key' => 'Auth Key',
            'access_token' => 'Access Token',
            'money' => 'Money',
        ];
    }
}

视图

<?php
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
?>

<h2>Send</h2>

<?php $form = ActiveForm::begin([
    'layout' => 'horizontal',
    'fieldConfig' => [
        'template' => "{label}\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
        'labelOptions' => ['class' => 'col-lg-1 control-label'],
    ],
]); ?>
    <?= $form->field($model, 'username')->textInput(['name' => 'username']) ?>

    <?= $form->field($model, 'money')->textInput(['name' => 'money'])?>

    <div class="form-group">
        <div class="col-lg-offset-1 col-lg-11">
            <?= Html::submitButton('Send', ['class' => 'btn btn-success']) ?>
        </div>
    </div>

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

2 个答案:

答案 0 :(得分:7)

将您的控制器更改为此

public function actionSend() {
    $model = new User();
    $model->getErrors();

    /* set the second parameters of load to empty string */
    if ($model->load(Yii::$app->request->post(), '')) {
        $model->money = 'something';
        $model->username = 'something';
        $model->save();
    }
    return $this->render('send', [
        'model' => $model
    ]);
}

如果您查看load方法的实现,您会发现 load有两个参数,第一个是您要分配的数据,第二个是数据的前缀名称。

让我们看一个例子来说明第二个参数的用法。 (我们假设您的表单名称为User

$data1 = [
    'username' => 'sam',
    'money' => 100
];

$data2 = [
    'User' => [
        'username' => 'sam',
        'money' => 100
    ],
],

// if you want to load $data1, you have to do like this
$model->load($data1, '');

// if you want to load $data2, you have to do like this
$model->load($data2);

// either one of the two ways, the result is the same.
echo $model->username;    // sam
echo $model->money;       // 100

希望它会有所帮助。

答案 1 :(得分:0)

让我们看下面的示例: 验证具有模式值的对象或数组键

//CONVERT OBJECT TO ARRAY
        $model_data = \yii\helpers\ArrayHelper::toArray($json);

Array
(
    [device_id] => abcd
    [device_type] => android
    [c_id] => 38   
    [device_for] => rent   
    [area_id] => 1
    [city_id] => 1
)

让我们加载数组数据进行建模

//LOAD POST DATA IN MODEL
$model->setAttributes($model_data);



if ($model->validate()) {

}else{

}