我是CodeIgniter的新手,所以我不知道该怎么做。我想在选择框中动态显示值,并在选择值后显示一个文本框,然后将文本框值和选项(显示在下拉列表中的名称)id传递给控制器,所以简要说明我想要的要做:
这是我的模型
function getAllCategories(){
$this->db->select('cat_name');
$q = $this->db->get('category');
if ($q->num_rows() > 0){
foreach($q->result() as $row) {
$data[] = $row;
}
return $data;
}
}
我的控制器
function showCategoryNames(){
$data = array();
$this->load->model('categoryModel');
$query = $this->categoryModel->getAllCategories();
if ($query){
$data['records'] = $query;
}
$this->load->view('itemsView',$data);
}
查看:这显示了简单列表
<?php if(isset($records)) : foreach($records as $row) :?>
<h2><?php echo $row->cat_name; ?></h2>
<?php endforeach;?>
<?php else :
endif;?>
答案 0 :(得分:2)
怎么样
<select name="mySelect">
<?php foreach($records as $row) { ?>
<option value="<?=$row->id?>"><?=$row->cat_name?></option>
<?php } ?>
</select>
在你看来?
这是一个关于使用jQuery,Ajax和Codeigniter的教程:
http://www.jotorres.com/2012/01/using-jquery-and-ajax-with-codeigniter/
答案 1 :(得分:0)
加载表单助手类后,您的视图应该是用于创建下拉列表
form_dropdown('size', $data_array, 'large');
答案 2 :(得分:0)
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Trip_model extends CI_Model{
var $table = 'tbl_trip';
public function __construct(){
parent::__construct();
$this->load->database();
}
public function get_all_trips(){
$this->db->from('tbl_trip');
$query=$this->db->get();
return $query->result();
}
public function get_by_id($id){
$this->db->from($this->table);
$this->db->where('trip_id',$id);
$query = $this->db->get();
return $query->row();
}
public function trip_add($data){
$this->db->insert($this->table, $data);
return $this->db->insert_id();
}
public function trip_update($where, $data){
$this->db->update($this->table, $data, $where);
return $this->db->affected_rows();
}
public function delete_by_id($id){
$this->db->where('trip_id', $id);
$this->db->delete($this->table);
}
}