Yii2 Select2 multiple with ajax: 非法偏移类型

Yii2 Select2 multiple with ajax: Illegal offset type

我使用 Yii2 和小部件 Select2。我希望 onkeyup 从 table "Products" 中搜索带有多个 select 选项的产品,因为我必须在第二个 table "rel_products" 中保存结果。我知道为什么它 return 错误:"Illegal offset type"

这是模型:

    public $products = array();   =>because i write result in second table

这里是视图:

  $url = \yii\helpers\Url::to(['/product/prodlist']);
            echo $form->field($model, 'products')->widget(Select2::classname(), [
                'initValueText' => 'Search for a city ...', // set the initial display text
                'model' => $model,
                'attribute' => 'products',
                'theme' => 'bootstrap',
                'options' => ['placeholder' => 'Search for a city ...'],
                'pluginOptions' => [
                    'allowClear' => true,
                    'minimumInputLength' => 3,
                    'ajax' => [
                        'url' => $url,
                        'dataType' => 'json',
                        'data' => new JsExpression('function(params) { return {q:params.term}; }')
                    ],
                    'escapeMarkup' => new JsExpression('function (markup) { return markup; }'),
                    'templateResult' => new JsExpression('function(product) { return product.text; }'),
                    'templateSelection' => new JsExpression('function (product) { return product.text; }'),
                ],
            ]);

这是控制器:

 public function actionProdlist($q = null, $id = null) {

    \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
    $out = ['results' => ['id' => '', 'text' => '']];
    if (!is_null($q)) {
        $query = new Query;
        $query->select()
            ->from('product')
            ->joinWith('translation')
            ->where(['like', 'title', $q])
            ->limit(20);
        $command = $query->createCommand();
        $data = $command->queryAll();
        $out['results'] = array_values($data);
    }
    elseif ($id > 0) {
        $out['results'] = ['id' => $id, 'text' => Product::find($id)->title];
    }
    return $out;
}

模型变化:

 public $products;   =>because i write result in second table