yapi/client/constants/variable.js

29 lines
421 B
JavaScript
Raw Normal View History

export default {
2017-08-22 16:06:56 +08:00
PAGE_LIMIT: 10, // 默认每页展示10条数据
HTTP_METHOD: {
'GET': {
request_body: false
},
'POST': {
request_body: true
},
'PUT': {
request_body: true
},
'DELETE': {
request_body: true
},
'HEAD': {
request_body: false
},
'OPTIONS': {
request_body: false
},
'PATCH': {
request_body: true
}
}
}
2017-08-22 16:06:56 +08:00