我正在使用 codeigniter 进行开发。我需要用选定的值填充多选
这是我的 json 数组(我需要选择它):
["1","2","3","4"]
这是我的 php 代码:
function tag($selected=0){
$query = $this->db->get('tags');
$html='';
foreach($query->result() as $row){
$html .='<option value="'.$row->id.'">'.$row->tag.'</option>';
}
return $html;
}
$selected包含一个 json 数组。现在我需要在 json 数组中填充竞争标签列表和选定项目。
我该怎么做?谁能告诉我我在这里使用什么方法?