PHP注意 - yii \ base \ ErrorException(数组到字符串转换)Yii

时间:2015-09-16 14:02:33

标签: php yii2

我的数据已成功进入数据库。但是,插入后不会重定向到register.php页面。

显示通知:

  

PHP注意事项 - yii \ base \ ErrorException

     

数组到字符串转换

但是,我注意到,一旦我从SiteController.php替换此行return $this->refresh($post);,所有工作正常。

那么,为什么这个refresh($post)无效......因为它在其他页面中工作正常。

我没有得到如何解决这个问题。我需要帮助。请帮帮我。

register.php

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

<?php $form = ActiveForm::begin(['id' => 'register-form']); ?>
    <?= $form->field($model, 'fname')->textInput()->label('First Name') ?>
    <?= $form->field($model, 'lname')->textInput()->label('Last Name') ?>
    <?= $form->field($model, 'email')->textInput()->label('Email') ?>
    <?= $form->field($model, 'password')->passwordInput()->label('Password') ?>
    <div class="form-group">
        <?= Html::submitButton('Register', ['class' => 'btn btn-success', 'name' => 'register-button' ]) ?>
    </div>
<?php ActiveForm::end(); ?>

SiteController.php(控制器)

<?php
namespace app\controllers;

use Yii;
use yii\filters\AccessControl;
use yii\web\Controller;
use yii\filters\VerbFilter;

class SiteController extends Controller
{
    public function actionRegister()
        {
        $model = new RegisterForm();
        if ($model->load(Yii::$app->request->post())) 
        {
            $post = Yii::$app->request->post('RegisterForm');

            Yii::$app->db->createCommand("INSERT INTO members SET FirstName=:fname, LastName=:lname, EmailID=:email, Password=:password",
                        array(':fname' => $post['fname'],':lname'=>$post['lname'],':email'=>$post['email'],':password'=>$post['password']))->execute();

            Yii::$app->session->setFlash('registerFormSubmitted');

            return $this->refresh($post);
        }
        return $this->render('register', [
            'model' => $model,
        ]);
        }
}

RegisterForm.php(模型)

<?php

namespace app\models;

use Yii;
use yii\base\Model;


class RegisterForm extends Model
{
    public $fname;
    public $lname;
    public $email;
    public $password;


    public function rules()
    {
        return [
            [['fname','lname', 'email', 'password'], 'required'],
            ['email', 'email'],
        ];
    }


    public function register()
    {
        if ($this->validate()) 
    {
        /*
                $form= new Form();
        $form->name=$this->name;
        $form->email=$this->email;
        $form->passowrd=$this->passowrd;
        $form->save();
        */
            return true;
        }
        return false;
    }

}

这是错误的打印屏幕。 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在错误屏幕上轻松看到您向我们显示发送到名为$anchor的方法的refresh()是一个数组,并且您正在尝试将其连接,就像它是一个字符串一样。就是这样。

由于该屏幕上的文档说$anchor预计是该方法中的字符串,因此唯一的原因是您发送的数据不正确。