yakczh
2014-11-04 22:27:50 +08:00
$app->path('posts', function($request) use($app) {
$app->get(function($request, $postId) use($app) {
// Prepare your data ONCE
$data = array(
array('title' => 'Foo', 'author' => 'Calvin'),
array('title' => 'Bar', 'author' => 'Hobbes')
);
// Respond in multiple formats
$app->format('json', function($request) use($app, $data) {
return $data;
});
$app->format('html', function($request) use($app, $data) {
return $app->template('posts', $data);
});
});
});
这种写法感觉比较丑