09 2020 档案

摘要:<template> <div class="pg-container"> <el-table :expand-row-keys="expends" :row-key="getRowKeys" :data="tableData" class="table-class"> <el-table-colu 阅读全文
posted @ 2020-09-30 15:12 ThisCall 阅读(1601) 评论(0) 推荐(0) 编辑
摘要:情况一:router-view 子组件发生变化导致父组件发生改变 父组件中: <router-view @getMessage="showMsg"></router-view> showMsg (val) { // methods方法 val即为子组件传过来的值 console.log(val) } 阅读全文
posted @ 2020-09-30 09:33 ThisCall 阅读(790) 评论(0) 推荐(0) 编辑
摘要:config.headers['Pragma'] = 'no-cache';// 解决id缓存 或 const baseRequest = (config) => { config.headers = { Pragma: 'no-cache', ...authHeader() } export de 阅读全文
posted @ 2020-09-24 14:01 ThisCall 阅读(190) 评论(0) 推荐(0) 编辑
摘要:<!-- Vue SFC --> <template> <div class="h overflow"> <div class="new-header clearfix bxs"> <div class="header-item header-lf h cupo" @click="backFn"> 阅读全文
posted @ 2020-09-23 19:10 ThisCall 阅读(437) 评论(0) 推荐(0) 编辑
摘要:// 删除 deleteSelectItem() { let multiSelect = this.multiSelect; let tableData = this.tableData; this.tableData = tableData.filter( (item) => !this.mult 阅读全文
posted @ 2020-09-22 18:45 ThisCall 阅读(313) 评论(0) 推荐(0) 编辑
摘要:当前页面 Vue如何获取当前页面的url,获取路由地址 完整url可以用 window.location.href路由路径可以用 this.$route.path路由路径参数 this.$route.params 例如:/user/:id → /user/2044011030 → this.$rou 阅读全文
posted @ 2020-09-22 18:43 ThisCall 阅读(1273) 评论(0) 推荐(0) 编辑
摘要:当前页面跳转网页,新打开和在本页面打开 替换原页面: window.location.href=""; 新打开一个页面: window.open(''); 阅读全文
posted @ 2020-09-22 16:55 ThisCall 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-09-22 12:05 ThisCall 阅读(651) 评论(0) 推荐(0) 编辑
摘要:<head> <meta charset="utf-8"> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/> <meta http-equiv="Pragma" content="no-c 阅读全文
posted @ 2020-09-20 17:11 ThisCall 阅读(1107) 评论(0) 推荐(0) 编辑
摘要:避免版本升级浏览器缓存文件的问题 阅读全文
posted @ 2020-09-20 16:32 ThisCall 阅读(1263) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/176198.htm 阅读全文
posted @ 2020-09-18 18:18 ThisCall 阅读(735) 评论(0) 推荐(0) 编辑
摘要:IE网页被缓存,页面不及时刷新问题解决 IE会对Ajax的get请求进行缓存,进行get请求时,如果两次请求的URL完全相同,浏览器会显示缓存的页面。这时可以在URL中加入参数&t=new Date().getTime()。这样每次访问的URL不同,可以避免网页被缓存,网页即时刷新。 阅读全文
posted @ 2020-09-18 14:49 ThisCall 阅读(375) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/b6d7db35b6e4 vue刷新当前页面有挺多种方法,比如 window.location.reload() 或者 this.$router.go(0) 但是这两种方法是会出现一瞬间的白屏,体验不好,所以这里给大家推荐第三种比较好用的刷新页面的 阅读全文
posted @ 2020-09-18 10:20 ThisCall 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-09-15 19:43 ThisCall 阅读(224) 评论(0) 推荐(0) 编辑
摘要:用户在textarea中输入的换行符,传到后台,再返回前端,展示在div中。 vue 中 用 {{ }} 进行数据绑定的时候,可以看到换行符并不生效的。 如果需要div显示为与textarea 一致的效果: 解决办法1: v-html : 有安全风险,有注入攻击风险 解决办法2: 在展示的div添加 阅读全文
posted @ 2020-09-15 17:41 ThisCall 阅读(162) 评论(0) 推荐(0) 编辑
摘要:File--》Preferences--》Setting 阅读全文
posted @ 2020-09-13 17:48 ThisCall 阅读(244) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/xxkalychen/article/details/102375025 阅读全文
posted @ 2020-09-08 18:22 ThisCall 阅读(94) 评论(0) 推荐(0) 编辑
摘要:"editor.formatOnSave": true, https://www.cnblogs.com/vs1435/p/11798670.html ctrl + shift + p > Configure Language Specific Settings > Vue > 编辑文件. { // 阅读全文
posted @ 2020-09-04 13:24 ThisCall 阅读(3313) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zr123/p/11461124.html <el-form :model="dynamicValidateForm" ref="dynamicValidateForm" label-width="100px" class="demo-dynamic" 阅读全文
posted @ 2020-09-01 17:39 ThisCall 阅读(1625) 评论(0) 推荐(0) 编辑
摘要:<el-input v-model="scope.row.setMaxScore" :ref="`inputRefs${scope.$index}`" size="small" @blur="changeMax (scope.$index,scope.row)" ></el-input> //鼠标离 阅读全文
posted @ 2020-09-01 15:45 ThisCall 阅读(280) 评论(0) 推荐(0) 编辑