fix 请求信息封装常量
This commit is contained in:
23
src/constants/result-constants.ts
Normal file
23
src/constants/result-constants.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
/**响应-code正常成功 */
|
||||
export const RESULT_CODE_SUCCESS = 1;
|
||||
|
||||
/**响应-msg正常成功 */
|
||||
export const RESULT_MSG_SUCCESS = 'success';
|
||||
|
||||
/**响应-code错误失败 */
|
||||
export const RESULT_CODE_ERROR = 0;
|
||||
|
||||
/**响应-msg错误失败 */
|
||||
export const RESULT_MSG_ERROR = 'error';
|
||||
|
||||
/**响应-网络连接超时 */
|
||||
export const RESULT_MSG_TIMEOUT = 'Network connection timeout!';
|
||||
|
||||
/**响应-未知响应数据类型 */
|
||||
export const RESULT_MSG_NOT_TYPE = 'Unknown response data type!';
|
||||
|
||||
/**响应-服务器连接出错 */
|
||||
export const RESULT_MSG_SERVER_ERROR = 'Server connection error!';
|
||||
|
||||
/**响应-请求地址未找到 */
|
||||
export const RESULT_MSG_URL_NOTFOUND = 'Request address not found!';
|
||||
Reference in New Issue
Block a user