tp5.0数据表不存在 错误 SQLSTATE[42S02]

浏览:839 发布日期:2019/12/21 分类:求助交流
tp5.0 SQLSTATE[42S02]: base table or view not found: 1146 Table 'shop.shop_comment' doesn't exist.。我查看了数据表也没有错,database.PHPde 配置也没有出错,其他表都可以就这个不行//1.controller
class Goods extends Base
{
    
    //商品列表
    public function index($id){

        $goodsModel = new goodsModel;
        $goods = $goodsModel->getCatGoods($id);
        $cat_name = $goodsModel->getCatName($id);
        $this->assign('goods',$goods);
        $this->assign('cat_name',$cat_name);
        return $this->fetch('list');
    }

    //商品详情

    public function detail($id){
        $goodsModel = new goodsModel;
        $goods = $goodsModel->getGoodsDetail($id);
        $goods['goods_color'] = explode('|', $goods['goods_color']);
        $goods['goods_color_desc'] = explode('|', $goods['goods_color_desc']);
        $goods['goods_type']  =  explode('|',$goods['goods_type']);

        $comments = Db::name('comment c')->join('user u','c.user_id=u.id')->where('c.goods_id',$id)->field(['u.mobile','c.content','c.create_time'])->select();

        $com_count = count($comments);
   
        $this->assign('goods',$goods);//把数组打出来
        $this->assign(); 
        $this->assign('goods',$goods);
        $this->assign('comments',$comments);
        $this->assign('com_count',$com_count);
        return $this->fetch('detail');
    }

}

//2.model
class Goods extends Model
{
    
    public function getCatGoods($id){
        return $this->where('cat_id',$id)->where('is_on',1)
                    ->field(['goods_name','goods_img','id','original_price','pro_price'])
                    ->select();
    }

    public function getCatName($id){
        return Db::name('category')->where('id',$id)->value('cat_name');
    }

    public function getGoodsDetail($id){
         return $this->where('id',$id)->find();
     }

     public function getIndexGoods($cat_id){
         return $this->where('cat_id',$cat_id)->where('is_on',1)
                     ->field(['id','goods_name','goods_img','pro_price'])
                     ->limit(6)
                     ->order('id desc')
                     ->select();
     }

     public function  getHotGoods($cat_id){
         return $this->where('cat_id',$cat_id)->where('is_on',1)->where('is_hot',1)
                     ->field(['id','goods_name','goods_img','pro_price'])
                     ->limit(4)
                     ->order('id desc')
                     ->select();
     }

     public function getCartGoods($id){
         return $this->where('id',$id)->field(['goods_img','goods_name','pro_price','original_price'])->find();
     }
}
3.database.php
return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
'database' => 'shop',
// 用户名
'username' => 'root',
// 密码
'password' => 'root',
// 端口
'hostport' => '',
// 连接dsn
'dsn' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
'prefix' => 'shop_',
// 数据库调试模式
最佳答案
评论( 相关
后面还有条评论,点击查看>>