使用 Laravel 4 和存储库模式 (MVRC) 创建 RESTful API 时,最好声明一个函数,例如
returnData($data, $dataType = 'JSON' ) {
if( $dataType == 'XML' ) {
return SimpleXML($data);
}
else {
return json_encode($data);
}
}
在 BaseController 中还是将其放在帮助程序库类中的最佳做法?或者也许在其他地方?