我的posts.create操作中有以下代码。
// ...
return redirect(route('posts.index'))->with('flashMessage', 'test');
// ...
我希望$flashMessage变量在视图中可用posts.index,但是,它不是。我究竟做错了什么?
附言
我不想使用 设置 flash 消息Session::flash('flashMessage', 'test'),因为它在 json 响应的情况下不起作用。