首頁 >後端開發 >php教程 > thinkphp3.2在Controller里为何select没有数据

thinkphp3.2在Controller里为何select没有数据

WBOY
WBOY原創
2016-06-13 12:30:02872瀏覽

thinkphp3.2在Controller里为什么select没有数据?
刚学thinkphp,请大家多多指教。
class IndexController extends Controller {
    public function index(){
$Dao = M("Article");
        $articles = $Dao->select();    //用select检索不出数据
//$articles=$Dao->query("select * from think_Article" ); //用query有数据

        $this->assign('articles', $articles);
        // 输出模板
        $this->display();
    }
}

在application里也设置'DB_PREFIX' => 'think_'了。
运行环境:ubuntu、mysql。
为什么用select检索不出数据呢?请大家指教。谢谢。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn