base.code-snippets 388 B

123456789101112131415
  1. {
  2. "http request": {
  3. "scope": "javascript,typescript",
  4. "prefix": "http",
  5. "body": [
  6. "/**",
  7. " * $4",
  8. " */",
  9. "export function ${0:n}(data) {",
  10. " return http.${1|get,post,put,delete|}(`${process.env.${2|VUE_APP_FileServer,VUE_APP_LearnWebSI,VUE_APP_BookWebSI|}}?MethodName=$3`, data)",
  11. "}"
  12. ],
  13. "description": "http 请求封装"
  14. }
  15. }