0

我是 CodeIgniter 的新手,所以我不知道该怎么做。我想在选择框中动态显示值,并在选择值后显示一个文本框,然后将文本框值和选项(显示在下拉列表中的名称)id传递给控制器​​,所以简单地说我想要什么去做:

  • 动态显示选择框中的值
  • 选择值后动态创建文本框
  • 将选定或跟踪下拉列表和文本框值的“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;?>
4

3 回答 3

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/

于 2013-01-11T13:08:37.223 回答
0

加载表单助手类后,您的视图应该用于创建下拉菜单

form_dropdown('size', $data_array, 'large');
于 2014-01-07T13:39:17.967 回答
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);
    }
}
于 2018-10-04T07:11:40.380 回答