0

很难想出一个标题。我正在使用带有模型/视图/控制器的 CodeIgniter。我的 MySQL 数据库中有以下相关的表:

在此处输入图像描述

在我的模型中,我具有以下功能:

function get_shoptable() {
    $this->db->from('productshop')->where('productId', $this->productId);
    $query = $this->db->get();
    return $query->result();
}

在我的控制器中,我使用上述功能,例如

$data['bookshop'] = $this->Product_model->get_shoptable();

在我看来,我正在学习 $bookshop。我的问题是,显示 shopName 而不是显示 shopId 的最佳方式是什么。考虑到 $bookshop 应该保持原样(shopid 除外),因为我正在创建一个包含产品数据的 HTML 表。

4

3 回答 3

3

试试这样的:

function get_shoptable() {
    $this->db->from('productshop')
    ->join('shop', 'productshop.shopId = shop.shopId')
    ->where('productshop.productId', $this->productId);
    $query = $this->db->get();
    return $query->result();
}
于 2013-07-30T12:44:27.443 回答
1

忽略codeigniter 的活动类以获取功能的详细信息

function get_shoptable()
 {
    $this->db->from('productshop')
    $this->db->join('shop', 'productshop.shopId = shop.shopId')
    $this->db->where('productshop.productId', $this->productId);
    $query = $this->db->get();
    return $query->result();
}
于 2013-07-30T12:50:13.773 回答
1

模型:

function get_products() {
    $this->db->select('productshop.productUrl, productshop.price, productshop.deliveryTime, productshop.shippingCast, productshop.inventory, productshop.productId, productshop.shopId, shop.shopName');
    $this->db->from('productshop');
    $this->db->join('shop', 'productshop.shopId = shop.shopId');
    $this->db->where('productshop.productId', $this->productId);
    return $this->db->get()->result_array();
}

控制器:

function products() {
    $data['products'] = $this->model_name->get_product();
    $this->load->view('products', $data);

}

看法:

<?php foreach($products as $p): ?>
<h1><?php echo $p['productUrl']; ?></h1>
<h1><?php echo $p['shopName']; ?></h1>
<?php endforeach(); ?>
于 2013-07-30T12:54:08.743 回答