ホームページ >バックエンド開発 >PHPチュートリアル >thinkphp3.2 select のコントローラーにデータがないのはなぜですか?
thinkphp3.2 select のコントローラーにデータがないのはなぜですか?
thinkphp を学んだばかりなので、アドバイスをお願いします。
class IndexController extends Controller {
パブリック関数index(){
$Dao = M("記事");
$記事= $ dao-> select();
//$articles=$Dao->query("select * from think_Article" ) //クエリを使用してデータを取得します
$this->assign('articles', $articles);
// 出力テンプレート
$this->display();
}
}
また、アプリケーションで「DB_PREFIX」=>「think_」を設定します。
動作環境:ubuntu、mysql。
select を使用してデータを取得できないのはなぜですか?アドバイスをお願いします。ありがとう。