vue2.0学习-方法轮子(持续佛系更新)

排序方法 sort()
在使用时附加方法,解决类似于这样的排序bug:23,3,35
function sortNumber(a,b){
return a-b
}
即使用时是:sort(sortNumber)

   原生的对象形式的数组排序方法

//数组对象方法排序:
function sortByKey(array,key){
return array.sort(function(a,b){
var x=a[key];
var y=b[key];
return ((x<y)?-1:((x>y)?1:0));
});
}
对象形式的数组排序方法 用法:
sortByKey(this.students,’age’);

{{}}大括号绑定数据,在页面渲染时会出现一个类似于bug的效果就是闪现代码:
解决方法:用v-text绑定数据

vue 路由模式 组件加载后让滚动条到顶端
路由守卫
router.afterEach((to, from, next) => {
window.scrollTo(0, 0);
});

复制内容到粘贴板的方法,直接用就行
function copyText (text) {
let copyInput = document.createElement(‘INPUT’)
copyInput.type = ‘text’
copyInput.style.width = ‘1px’
copyInput.style.height = ‘1px’
copyInput.style.border = 0
copyInput.style.outline = 0
document.body.appendChild(copyInput)
copyInput.value = text
copyInput.select()
const result = document.execCommand(‘Copy’)
document.body.removeChild(copyInput)
return result
}

    原文作者:余生社会
    原文地址: https://www.jianshu.com/p/80cfd23189cc
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞