Zend Framework を使用して、アプリケーションからと REST 経由で同じデータを受信したい場合、これは同じアクション コントローラーによって処理されますか。
articlesController extends Zend_Controller_Action
{
listAction()
{
// Service layer get data
// REST request return results in JSON
// Normal request return view
}
}
それとも、これは別のコントローラーにする必要がありますか?
articlesController extends Zend_Controller_Action
{
listAction()
{
// Service layer get data
// Returns view
}
}
articlesController extends Zend_Rest_Controller
{
getAction()
{
// Service layer get data
// Returns view
}
}
それが理にかなっていることを願っています
みんなありがとう