我开始使用 Laravel。我有一个显示和插入数据的控制器。它类似于
class UserController extends BaseController {
protected $layout = 'layouts.master';
public function showProfile()
{
$this->layout->content = View::make('user.profile');
}
public function addProfile()
{
<Insertion Logic>
echo "Successfully added";
}
}
现在 insert 是一个 ajax 调用。所以我想在添加到数据库后只显示成功消息。但在我的情况下,布局内容也会出现。我怎样才能返回回声消息。
谢谢