摘要:
参考博客: https://blog.csdn.net/JHY97/article/details/124385960 api/index.js //当前这个模块:API进行统一管理import request from './request'//发请求:axios发请求返回结果Promise对象e 阅读全文
摘要:
src/api/index.js //当前这个模块:API进行统一管理import request from './request'//发请求:axios发请求返回结果Promise对象export const reqCategoryList = () => requests({ url: '/pr 阅读全文
摘要:
this.$router.push('/search/'+this.searchStr+"?k="+this.searchStr.toUpperCase()); //第二:模板字符串 this.$router.push(`/search/${this.searchStr}?k=${this.keyw 阅读全文
摘要:
src/api/request.js //axios二次封装//XMLHttpRequest、fetch、JQ、axios//为什么需要进行二次封装//请求拦截器,响应拦截器:请求拦截器,可以在发请求之前可以处理一些业务,响应拦截器,当服务器数据返回以后,可以处理一些事情//对于axios进行二次 阅读全文
摘要:
const userId = '123'router.push({ name: 'user', params: { userId }}) // -> /user/123router.push({ path: `/user/${userId}` }) // -> /user/123// 这里的 par 阅读全文
摘要:
使用webpack的proxy vue.config.js module.exports ={ //代理跨域 devServer:{ proxy:{ '/api':{ target:'http://39.98.1223.211' } } }} 当协议,端口,域名有一个不同时,此时就需要跨域; 跨域的 阅读全文
摘要:
function deepClone(source){ // [] => Array(基类) {}=> Object const targetObj = source.constructor Array ? []:{}; for(let keys in source){ if(source.hasO 阅读全文
摘要:
<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1 阅读全文
摘要:
一、防抖 等触发完事件n秒后不再触发,才执行。 场景: 1.浏览器窗口 缩放,resize事件,常见于需要做页面适配的时候,需要 根据最终呈现的页面情况进行dom渲染 2.表单的按钮提交事件,例如登录,发短信,避免用户点击太快,以至于发送了多次请求 3.search搜索框输入,只需用户最后一次输入完 阅读全文