0

renderPartial clientSide 検証が機能しません。フォームの一部を ajax でレンダリングしたい。例: _form.php

$form = ActiveForm::begin([
    'options' => [
        'enableAjaxValidation' => true,
    ]
]); 
$form->field($model, 'category_id')->dropDownList($category, [
'onchange'=>'
    $.get( "'.Url::toRoute('/controller/params').'", { id: $(this).val() } )
           .done(function( data ) {
                     $( "#offers-param-content" ).html( data );
           }
     );'
]);

Controller.php

public function actionParams($id)
{
    $model = new Param();
    $params = EavAttribute::find()->where(['category_id'=>$id])->all();
    $this->renderPartial('_params', ['model' => $model, 'params' => $params];
}

_params.php

foreach($params as $item){
    echo Html::activeTextInput('text', $model, $item->name);
}
4

3 に答える 3

4

クライアント検証を有効にする場合は、このプロパティを true に設定します。

$form = ActiveForm::begin([
    'options' => [
        'enableAjaxValidation' => true,
    'enableClientValidation'=>true

    ]
]); 

renderPartial() の代わりに renderAjax() 関数を使用すると、ビューに登録されている JS/CSS スクリプトとファイルをレンダリング結果に挿入します。

于 2016-02-01T08:30:45.783 に答える
0

あなたはに設定し、実行Controller.phpする必要がありますlayoutfalsedie

public function actionParams($id)
{
    $this->layout = false;
    $model = new Param();
    $params = EavAttribute::find()->where(['category_id'=>$id])->all();
    $this->renderPartial('_params', ['model' => $model, 'params' => $params];
    die;
}
于 2016-01-31T17:37:57.617 に答える
0

コントローラーからビューに検証エラーを返さない。その使用をアーカイブするには

yii\widgets\ActiveForm::validate($yourModel);

アクティブフォームを使用していない場合は、次の方法でエラーを返すことができます

$model->getErrors();//will return errors from $model->validate()

あなたの抜粋からこれを試してください

public function actionParams($id) {
        $model = new Param();
        if ($model->load(Yii::$app->request->post())) {
            if (Yii::$app->request->isAjax) {
                Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
                return ActiveForm::validate($model); /* Validation error messages are returned by this static function */
            }
            $params = EavAttribute::find()->where(['category_id' => $id])->all();
            $this->renderPartial('_params', ['model' => $model, 'params' => $params]);
        }
    }
于 2016-02-01T06:17:11.210 に答える