当前位置: 首页 > news >正文

滕州营销型网站中国淮南网

滕州营销型网站,中国淮南网,php wordpress 漏洞,批量爆破wordpress后台密码说明#xff1a; 如果只是在前端#xff0c;axios常常需要结合mockjs使用#xff0c;如果是前后端分离#xff0c;就需要调用对应的接口#xff0c;获取参数#xff0c;传递参数#xff1b;由于此文章只涉及前端#xff0c;所以我们需要结合mockjs使用#xff1b;由于… 说明 如果只是在前端axios常常需要结合mockjs使用如果是前后端分离就需要调用对应的接口获取参数传递参数由于此文章只涉及前端所以我们需要结合mockjs使用由于为了方便实现效果在这篇文章里面使用的是一级菜单对应的代码是【Vue开发实例六实现左侧菜单导航 — 动态实现一级菜单】中的代码 文末附全部代码 axios和mockjs的安装与使用 一、Axios1、安装axios2、安装mockjs 二、数据请求1、get请求2、post请求3、添加数据4、修改5、删除6、查询1无参查询2有参查询 一、Axios Axios 是一个基于 promise 的 HTTP 库类似于我们常用的 ajax。 在开发过程中特别是前后端分离的项目比如前端用Axios、ajax请求后端数据后端也许当前只给了接口文档还没有数据的返回导致前端无法进行测试、调试现在可以使用mock.js拦截前端ajax请求更加方便的构造你需要的数据大大提高前端的开发效率。 1、安装axios npm install axios --save在main.js全局引入axios import axios from axios; Vue.prototype.$axios axios;2、安装mockjs npm install mockjs --save-dev在src下创建文件夹mock并创建index.js文件输入以下测试内容 //引入mockjs import Mock from mockjs//使用mockjs模拟数据 Mock.mock(/test, {res: 0,data:{datatime: datetime,//随机生成日期时间weekday|1-7: 7,//随机生成1-7的数字name: cname,//随机生成中文名字} });在main.js引入此mock.js就可以进行全局拦截axios和ajax的请求了。 import ./mock/index.js;二、数据请求 1、get请求 在之前的Main1页面上编写代码 创建按钮 el-button clickgetTestget数据/el-button创建axios请求方法 script export default {name: Main1,methods: {getTest() {this.$axios.get(/test).then((res) {console.log(res.data);});},}, }; /scriptthis.$axios.get(“/test”)中this.$axios.get 表示使用get请求“/test” 访问路径刚好与之前mock.js定义的想吻合 res 就是取得返回的数据集合其中res.data就是我们定义好的返回数据。 浏览器中“右键-检查”或“F12” 2、post请求 添加post请求按钮 el-button clickpostTestpost测试1/el-button编写js post代码 postTest(){this.$axios.post(/post/test1,{id:1}).then(res{console.log(res.data)}) }在mock/index.js其中第2个参数指定为 post如果我们用get请求则会提示404只能用post Mock.mock(/post/test1, post, function (param) {console.log(传入的参数为, param.body)return {res: 1,msg: success} });效果展示 3、添加数据 按钮代码 el-button clickpostAddadd数据/el-button请求方法代码 postAdd(){this.$axios.post(/post/add,{id:1,name:哈哈}).then(res{console.log(res.data)}) }Mockjs数据 // 定义userList数组 let userList []; Mock.mock(/post/add, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag truefor (let item of userList) {if (item.id id) flag false // 判断id是否已经存在}// 如果id不存在if (flag) {userList.push({name: body.name,id})return {userList,res: 0,msg: 添加成功}} else {return {userList,res: 1,msg: 添加失败}} });效果展示 第一次发送请求因为里面没有id为1的数据所以添加成功 第二次发送请求因为id1的数据已经添加成功了所以失败 重新换一个id就可以添加成功 4、修改 按钮代码 el-button clickpostModmod数据/el-button请求代码 postMod(){this.$axios.post(/post/mod,{name:哈哈,id:3}).then(res{console.log(res.data)}) }mockjs数据 Mock.mock(/post/mod, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag false, index 0;for (let i in userList) {if (userList[i].id id) {flag true // 判断id是否已经存在存在返回trueindex i//对应数组的下标}}// 如果id存在则修改if (flag) {userList[index] bodyreturn {userList,res: 0,msg: 修改成功}} else {return {userList,res: 1,msg: 修改失败}} });效果展示 因为第一次修改里面没有数据所以修改失败 先点击 添加add再点击 修改mod 5、删除 按钮代码 el-button clickpostDeldel数据/el-button请求代码 postDel() {this.$axios.post(/post/del, { id: 1 }).then((res) {console.log(res.data);});},mockjs数据 Mock.mock(/post/del, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag false, index 0;for (let i in userList) {if (userList[i].id id) {flag true // 判断id是否已经存在存在返回trueindex i//对应数组的下标}}// 如果id存在则删除if (flag) {userList.splice(index, 1);return {userList,res: 0,msg: 删除成功}} else {return {userList,res: 1,msg: 删除失败}} });效果展示 先添加数据再删除数据 6、查询 按钮代码 el-button clickpostQueryquery无参数据/el-buttonbr /br / el-button clickpostQuery2query有参数据/el-buttonbr /br /请求代码分别是没有参数的查询全部有id参数的根据id来查询 1无参查询 postQuery(){this.$axios.post(/post/query,{}).then(res{console.log(res.data)}) }2有参查询 postQuery2(){this.$axios.post(/post/query,{id:1}).then(res{console.log(res.data)}) }mockjs数据 Mock.mock(/post/query, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)if (!id) {//如果id不存在则直接返回全部return {userList,res: 0,msg: 查询成功}}//idfor (let item of userList) {if (item.id id) {return {userList: [item],res: 0,msg: 查询成功}}}// 如果id不存在则返回失败return {userList: [],res: 1,msg: 查询失败} });效果展示 按照图示步骤执行 首先进行无参查询查询全部返回是空其次是添加一条数据接着带参查询id1的数据 到此为止增删改查get、post都已测试完成put等方法自己进行测试 附全部代码如下 Main1.vue templatedivspan这是Main1/spanbr /br /el-button clickgetTestget数据/el-buttonbr /br /el-button clickpostTestpost测试1/el-buttonbr /br /el-button clickpostAddadd数据/el-buttonbr /br /el-button clickpostModmod数据/el-buttonbr /br /el-button clickpostDeldel数据/el-buttonbr /br /el-button clickpostQueryquery无参数据/el-buttonbr /br /el-button clickpostQuery2query有参数据/el-buttonbr /br //div /templatescript export default {name: Main1,data() {return {userList: [{ id: 1, name: 张三 }],};},methods: {getTest() {this.$axios.get(/test).then((res) {console.log(res.data);});},postTest() {this.$axios.post(/post/test1, { id: 1 }).then((res) {console.log(res.data);});},postAdd() {this.$axios.post(/post/add, { id: 1, name: 牛牛 }).then((res) {console.log(res.data);});},postMod() {this.$axios.post(/post/mod, { name: 哈哈, id: 3 }).then((res) {console.log(res.data);});},postDel() {this.$axios.post(/post/del, { id: 3 }).then((res) {console.log(res.data);});},postQuery() {this.$axios.post(/post/query, {}).then((res) {console.log(res.data);});},postQuery2() {this.$axios.post(/post/query, { id: 1 }).then((res) {console.log(res.data);});},}, }; /scriptstyle scoped .el-button {height: auto; } /style mock/index.js //引入mockjs import Mock from mockjs//使用mockjs模拟数据 Mock.mock(/test, {res: 0,data:{datatime: datetime,//随机生成日期时间weekday|1-7: 7,//随机生成1-7的数字name: cname,//随机生成中文名字} });Mock.mock(/post/test1, post, function (param) {console.log(传入的参数为, param.body)return {res: 1,msg: success} });// 定义userList数组 let userList []; Mock.mock(/post/add, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag truefor (let item of userList) {if (item.id id) flag false // 判断id是否已经存在}// 如果id不存在if (flag) {userList.push({name: body.name,id})return {userList,res: 0,msg: 添加成功}} else {return {userList,res: 1,msg: 添加失败}} });Mock.mock(/post/mod, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag false, index 0;for (let i in userList) {if (userList[i].id id) {flag true // 判断id是否已经存在存在返回trueindex i//对应数组的下标}}// 如果id存在则修改if (flag) {userList[index] bodyreturn {userList,res: 0,msg: 修改成功}} else {return {userList,res: 1,msg: 修改失败}} });Mock.mock(/post/del, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)let flag false, index 0;for (let i in userList) {if (userList[i].id id) {flag true // 判断id是否已经存在存在返回trueindex i//对应数组的下标}}// 如果id存在则删除if (flag) {userList.splice(index, 1);return {userList,res: 0,msg: 删除成功}} else {return {userList,res: 1,msg: 删除失败}} });Mock.mock(/post/query, post, function (param) {let body JSON.parse(param.body) // 获取请求参数let id parseInt(body.id)if (!id) {//如果id不存在则直接返回全部return {userList,res: 0,msg: 查询成功}}//idfor (let item of userList) {if (item.id id) {return {userList: [item],res: 0,msg: 查询成功}}}// 如果id不存在则返回失败return {userList: [],res: 1,msg: 查询失败} });Aside/index.vue templatediv styleheight: 100%el-menubackground-color#545c64text-color#ffffffactive-text-color#ffd04bclassel-menu-vertical-demorouterel-menu-item:indexitem.pathv-foritem in menu_data:keyitem.namei :classitem.icon/i{{ item.name }}/el-menu-item/el-menu/div /templatescript export default {name: Aside,data() {return {menu_data: [{name: 一级菜单1,icon: el-icon-location,path: /index/menu1,},{name: 一级菜单2,icon: el-icon-document,path: /index/menu2,},{name: 一级菜单3,icon: el-icon-setting,path: /index/menu3,},],};}, }; /scriptstyle scoped .el-icon-location, .el-icon-document, .el-icon-setting {display: inline-flex;align-items: center;justify-content: center; } /style
http://www.w-s-a.com/news/172828/

相关文章:

  • 洛阳工程建设信息网站山西响应式网页建设哪里好
  • 企业网站建设市场的另一面wordpress分类插件
  • 网站建设名头公司展厅装修
  • 小型购物网站开发费用郑州企业网站模板建站
  • 个体商户建自己的网站做销售建设积分兑换官方网站
  • 网站建设与维护培训网页制作专业用语
  • 建站特别慢wordpress网页制作与设计项目策划书
  • 视频制作素材免费网站头像制作在线生成器
  • 网站建设是不是可以免费建站广州做网站 信科网络
  • 闸北区网站设计叫别人做网站后怎么更改密码
  • 为什么想做网站运营建设工程教育网站
  • 站长基地百度推广整体优化网站
  • 门窗 东莞网站建设wordpress外链论坛
  • 安徽省建设部网站官网还能用的wap网站
  • 企业网站设计开发网站关键词优化seo
  • 郑州高档网站建设台州网站建设推广
  • 广东省建设信息港网站WordPress手机缩略图设置
  • 优秀网站主题平顶山专业做网站公司
  • wordpress返回顶部插件wordpress站群seo
  • 企业网站建设报价表百度竞价托管哪家好
  • 织梦网站首页打开慢淄博网站推广那家好
  • 苏州高端网站建设kgwl互动网站建设的主页
  • 宿州网站建设哪家公司好个人网站制作方法
  • 网站正能量晚上在线观看视频站长之家关键词挖掘工具
  • 建设网站怎么判断是电脑还是手机仿租号网站源码网站开发
  • seo百度网站排名软件重庆巫山网站设计公司
  • 搭建视频播放网站网站排名诊断
  • 网站域名注册网站centos做网站服务器
  • 网站服务器共享的 vpsh5页面制作软件电脑版
  • 免费手机网站申请上海网站建设设计公司哪家好