recherche

Maison  >  Questions et réponses  >  le corps du texte

rapport d'erreur thinkphp3.2.3 après l'instanciation du modèle de vue

<?php
namespace Admin\Controller;
use Think\Controller;
class ArticleController extends Controller {
    public function lst(){
        $article = D('ArticleView');
        $count = $article->count();// 查询满足要求的总记录数
        $Page = new \Think\Page($count,5);// 实例化分页类 传入总记录数和每页显示的记录数
        $show = $Page->show();// 分页显示输出
        $list = $article->order('id asc')->limit($Page->firstRow.','.$Page->listRows)->select();
        $this->assign('list',$list);// 赋值数据集
        $this->assign('page',$show);// 赋值分页输出
        $this->display();
    }
<?php
namespace Admin\Model;
use Think\Model\ViewModel;
class ArticlViewModel extends ViewModel {
    
}

报错

1146 : La table 'tk_blog.blog_article_view' n'existe pas [ SQL语句 ] : AFFICHER LES COLONNES DE `blog_article_view`


██████2441 Il y a quelques jours1057

répondre à tous(2)je répondrai

  • dabour

    dabour2018-04-20 16:34:18

    Le tableau tk_blog.blog_article_view n'existe pas

    répondre
    0
  • 路过

    路过2018-04-17 17:49:12

    Il s'agit d'une erreur SQL, cela n'a rien à voir avec le modèle

    répondre
    0
  • Annulerrépondre