public function read($id)
{
//1すべてのデータを取得
$this ->見る -> assign('aid', $id);
$data=ArticleModel::get($id);
$viewed=$data['viewed'];
$viewed =1;
$data->isUpdate(true)->save(['viewed' => $viewed]);
//2模板赋值
$this ->見る -> assign('data', $data);
//$comment=Comment::order(['id' => 'desc'])-> where(['aid'=>$id,'status'=>1])->paginate(5);
$comment = $this -> CommentListAll($aid=$id,$pid=0,$commentList=array(),$spac=0,$pauthor=NULL);
//$comment=Comment::all();
dump($comment);
$this ->見る -> assign('commentlist', $comment);
return $this-> view ->fetch('detail');
}
$commentList[$i]['pauthor']=$pauthor;
$i ;
$this -> CommentListAll($v['aid'],$v['id'],$commentList,$spac,$v['username']);
}
return $commentList;
//dump($commentList);
}
プロジェクトの場所->アプリケーション->config.php->20行目
'app_debug' =>false,
を次のように変更します:
'app_debug' =>true,
デバッグモードをオンにして、特定のエラーの場所を調べます
ブレークポイントを使用してこれをデバッグできます。そうしないと、エラー メッセージが明確ではなくなり、判断が困難になります。
ページエラー!後でもう一度お試しください~
少なくともブラウザのエラー メッセージを表示する必要があります。そうでない場合、どのように分析を手助けできますか?