# javaee-frontend_1 **Repository Path**: eedjlk/javaee-frontend_1 ## Basic Information - **Project Name**: javaee-frontend_1 - **Description**: JavaEE 前端学习项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-12-19 - **Last Updated**: 2023-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # javaee-frontend ## 环境准备 ``` npm config set registry https://registry.npmmirror.com http://124.222.238.167/ruoyi admin/admin https://gitee.com/tr0313/javaee-frontend.git ``` ## 开发手册 ``` https://v2.cn.vuejs.org/ https://element.eleme.cn/#/zh-CN http://www.axios-js.com/ ``` ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ## HTTP - GET - 查询 - url后的问号后拼接传递 - axios params - DELETE - 删除 - 与GET使用方式相似 - POST - 创建 - body传递参数 - chrome network payload - axios data - PUT - 修改 - 于POST方法使用相似 - 传递参数的方式有哪些 - params传递,url后的问号后拼接传递 GET DELETE POST PUT - body传递参数 POST PUT - header传递 GET DELETE POST PUT - path传递 放在url路径中 GET DELETE POST PUT