摘要:
//普通数组去重 let ary = [1,2,3,1,2,3,1,2,3] //方法一 for循环+三目运算 Array.prototype.quchong1 = function (){ let obj = {} let result = [] for(let i = 0; i< this.le 阅读全文
摘要:
阅读全文
摘要:
import moment from "moment"; // 设置语言为中文 moment.locale("zh_cn") //xxx年前的数据 需要传入秒 所以 *1000 this.imgDetail.cnTime = moment(this.imgDetail.atime*1000).fro 阅读全文
摘要:
call 和 apply 区别:call: 第一个参数,改变this的指向, 之后的参数可以传好多个,随意 apply: 第一个参数,改变this的指向, 第二个参数只能传数组,只能是数组,没有第三个参数(如果写了第三个参数,没有作用的) .call('第一个参数改变this指向', '第二个参数' 阅读全文
摘要:
<template> <div> <el-button @click="btn">按钮</el-button> </div> </template> <script> export default { data() { return {} }, mounted() { }, methods:{ bt 阅读全文
摘要:
小程序有globalData,这是一种简单的全局变量机制。这套机制在uni-app里也可以使用,并且全端通用。 scroll-view 可滚动使徒区域 可滚动区域高度: height: calc(100vh - tabbar高度) @scrolltolower > 触底后 请求数据,加载新数据 还可 阅读全文
摘要:
在vs code 插件商城中安装 结果: 阅读全文
摘要:
阅读全文
摘要:
如同: <el-table-column v-for="(item,index) in monthList" :key="index" :sortable="false" :label="item.m" :render-header="renderHeader" > <template slot-s 阅读全文
摘要:
this.$forceUpdate() vue强制更新$forceUpdate() 添加this.$forceUpdate();进行强制渲染,效果实现。 阅读全文