Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以忽略 CakePHP 中布局的使用吗?通常,默认布局会起作用,或者我们可以像这样指定自己
$this->layout='userdefined';
但是,现在我不需要在页面中应用布局,这意味着我希望该页面完全空白。它应该只处理我们发送到那里的数据。可能吗?如果是这样,方法是什么?
你可以这样做:
$this->layout = false;