我正在使用:从教程中加载Select2和Ajax:http://demos.krajee.com/widget-details/select2#usage-ajax。
我有问题,脚本有效,但我无法选择值。我可以搜索,但我想从结果中进行选择。我点击一个没有任何反应,值无法输入。
形式:
<?= $form->field($model, 'top_surname_surname_id')->widget(Select2::classname(), [
'initValueText' => $cityDesc, // set the initial display text
'options' => ['placeholder' => 'Wpisz nazwisko'],
'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(top_surname_surname_id) { return top_surname_surname_id.text; }'),
'templateSelection' => new JsExpression('function (top_surname_surname_id) { return top_surname_surname_id.text; }'),
],
]);?>
控制器:
public function actionSurnamelist($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('surname_id, surname_name AS text')
->from('surname')
->where(['like', 'surname_name', $q])
->limit(20);
$command = $query->createCommand();
$data = $command->queryAll();
$out['results'] = array_values($data);
}
elseif ($id > 0) {
$out['results'] = ['id' => $id, 'text' => Surname::find($id)->surname_name];
}
return $out;
}
问题在于这一行:
$query->select('surname_id, surname_name AS text')
->from('surname')
->where(['like', 'surname_name', $q])
->limit(20);
工作然后我编辑代码:
$query->select('surname_id AS id, surname_name AS text')
->from('surname')
->where(['like', 'surname_name', $q])
->limit(20);
答案 0 :(得分:2)
如果我理解正确,你的结果应该是
$out['results'] = [
'id' => your_id,
'text' => some text,
];
但如果您看到if条件,则选择的surname_id
与id
不同,因此要么使用别名,要么使用foreach循环到$data
,例如
foreach($data as $key=>$value){
$out['results'] = [
'id' => $value->surname_id,
'text' => $value->text,
];
}
希望这会对你有所帮助。
答案 1 :(得分:-1)
问题是将select重定向到字段的ID。