摘要:
document.querySelector('html').style.filter = 'grayscale(1)'; 阅读全文
摘要:
/** * 是否合法IP地址 */ export function validateIP(rule, value,callback) { if(value==''||value==undefined||value==null){ callback(); }else { const reg = /^( 阅读全文
摘要:
ios兼容性问题 不支持 ‘-’ 连接日期 解决方法 new Date("yyyy-MM-dd HH-mm-ss".replace(/-/g, "/")) 阅读全文
摘要:
HBuilder X 版本:2.5.1 报错原因:在某个.vue页面没有写<script></script> 阅读全文
摘要:
linkProps(url) { if (this.isExternalLink(url)) { return { is: 'a', href: url, target: '_blank', rel: 'noopener' } } return { is: 'router-link', to: 'r 阅读全文
摘要:
函数防抖(debounce):当持续触发事件时,一定时间段内没有再触发事件,事件处理函数才会执行一次,如果设定的时间到来之前,又一次触发了事件,就重新开始延时。 函数节流(throttle):当持续触发事件时,保证一定时间段内只调用一次事件处理函数。 js代码 /** * @desc 函数防抖 * 阅读全文
摘要:
问题: <template> <div class="container"> <div v-for="(item, index) in arrList" :key="index"> <span>{{ item.name }}-{{ item.age }}-{{ item.score }}</span 阅读全文
摘要:
一、引入uni-indexed-list、uni-icons组件 从uni-app插件市场下载或从HBuilder X提供的hello uni-app模板中复制 二、页面中引用 三、对请求获得的数据处理,最终要和官方模板提供的数据结构类似,如下 3.1、模拟数据 3.2、提取数据中name字段的首字 阅读全文