base.code-snippets 499 B

123456789101112131415161718192021
  1. {
  2. "api request": {
  3. "scope": "javascript",
  4. "prefix": "api",
  5. "body": [
  6. "/**",
  7. " * ",
  8. " * @param {$4} ${5|data,params|}",
  9. " */",
  10. "export function ${0:n}(data) {",
  11. " return request({",
  12. " method: 'post',",
  13. " url: process.env.${2|VUE_APP_FileServer,VUE_APP_LearnWebSI,VUE_APP_BookWebSI|},",
  14. " params: getRequestParams('$3'),",
  15. " data",
  16. " });",
  17. "}"
  18. ],
  19. "description": "api 请求基本格式"
  20. }
  21. }