getTemplate()->render(false, $layout); } /** * 输出json信息 * * @param int $code * @param string $msg * @param array $data * @param string $callback */ protected function output($code = 0, $msg = '', $data = array(), $callback = "") { $output = array( 'code' => $code, 'msg' => $msg, 'data' => $data ?: array() ); header('Content-type: application/json'); if ($callback) { echo $response = $callback . "(" . json_encode($output) . ")"; exit(); } else { echo $response = json_encode($output); exit(); } // 记录调试信息 } /** * 输出错误信息 * * @param int $code * @param string $message */ protected function showError($code = 0, $message = '') { $output = array( 'code' => intval($code), 'message' => $message, 'data' => [] ); header('Content-type: application/json'); echo json_encode($output); exit(); } /** * 显示成功信息 * @param $data */ protected function showSuccess($data = array()) { $this->output(0, '请求成功', $data); } }