Yii2:如何发送模型和不属于模型的数组

Yii2: How to send a model and an array that doesn't belong to the model

我需要从视图向控制器发送一个表单以及一个 不属于模型的数组

我总是使用这句话发送我的表格:

<?= Html::submitButton('Send') ?>

现在我还需要发送一个名为 colors 的数组。

您可以在表单中添加您需要的所有字段

<input type='text' class='form-control'  name = 'yourname[your_index]'  >

然后在控制器中,您可以使用

读取 $_POST 的内容
 $post = Yii::$app->request->post(); 

在 $post 中,您使用

获得与模型相关的值
    $model->load($post)

与模型无关的值在

$post[yourname[your_index]]