私はlaravel ctrl "Posts"にこれを持っています:
public function index() {
$posts = Post::get();
if (Request::isJson()) {
return $posts;
}
return View::make('posts.index', compact('posts'));
}
ブラウザ経由で取得したときは人間の視点ですが、郵便配達員(http://www.getpostman.com/)でも人間の視点です!だから、私はjsonビューだけを入れたとき、私はそれを持っています。人間の見方をするのは、郵便配達員の通常の行動ではありませんね。