php – Yii2>如何将_form视图的html输出存储到字符串变量中

我想将表单视图的渲染html输出存储到我的Controller中的变量中,该表单视图使用ActiveForm和
Html Helper.

我已经尝试将renderPartial的结果直接存储到变量中,但这不起作用:

$htmlform = Yii::$app->controller->renderPartial('_form', ['model' => $model]);

我也尝试使用输出缓冲将输出回显到变量中,但我无法存储输出:

ob_start();
echo Yii::$app->controller->renderPartial('_form', ['model' => $model]);
$htmlform = ob_get_contents();
ob_end_clean();

查看文件:_form.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

/* @var $this yii\web\View */
/* @var $model frontend\models\Epic */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="epic-form">

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

    <?= $form->field($model, 'closed')->textInput() ?>

    <?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'organizationid')->textInput() ?>

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

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

如果有人对一个很棒的解决方案有所了解……

最佳答案 我已经在一个简单的ControllerAction中尝试过这种方式并且正确地工作…在var_dump($test)中有预期的结果

public function actionView($id)
{
    $test =  $this->renderPartial('_form', [
        'model' => $this->findModel($id),
    ]);
    var_dump($test);

}
点赞