码迷,mamicode.com
首页 >  
搜索关键字:cannot find the requ    ( 29133个结果
Vue计算属性和侦听器
"计算属性" 模板内的表达式非常便利,但是设计它们的初衷是用于简单运算的。在模板中放入太多的逻辑会让模板过重且难以维护。例如: 在这个地方,模板不再是简单的声明式逻辑。你必须看一段时间才能意识到,这里是想要显示变量 的翻转字符串。当你想要在模板中多包含此处的翻转字符串时,就会更加难以处理。 所以,对 ...
分类:其他好文   时间:2020-05-16 00:14:15    阅读次数:68
数组及排序LeetCode刷题记录
2、数组_排序 刷题总结:一般数组逃不过这些方法方法 双指针:一个从头遍历,一个从尾遍历 三指针:一个从头遍历,一个从尾遍历,一个遍历数组本身,找满足条件的进行交换 从后向前遍历,从后向前填充! 75、颜色分类 方法:三指针 为什么用多指针? 1. 题目说遍历一次数组解决问题, 一般都是用多指针! ...
分类:编程语言   时间:2020-05-15 22:56:15    阅读次数:84
「Krystalcsdn」的原创文章 微信小程序Cannot read property 'setData' of undefined问题解决 两种方法可用
微信小程序Cannot read property 'setData' of undefined问题解决 Krystalcsdn 2020-03-08 23:57:39 300 收藏展开今天写小程序,需要读取窗口高度然后设置scroll-view高度,在this.setData时报错“Cannot ...
分类:微信   时间:2020-05-15 22:56:03    阅读次数:133
Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router
原因:就如报错提示所描述的,不能重新定义$router,说明是重复定了$router。通常是因为在项目中安装了vue-router的依赖并且用Vue.use()使用了vue-router,还在index.html页面引入了vue-router.js文件。 解决方法有两种: 1. 去掉index.ht ...
分类:其他好文   时间:2020-05-15 19:51:07    阅读次数:177
6051: KiKi's K-Number (树状数组)
增加一个数就update(x,1) 减去这个数就update(x,-1) 查看是否有某个数就query(x)-query(x-1)是否>0 看比a大k的数就二分查找query值为query(a)+k的数 http://www.tzcoder.cn/acmhome/problemdetail.do?& ...
分类:编程语言   时间:2020-05-15 18:33:55    阅读次数:73
find查找常用命令
#统计查找到文件总的大小 find ./ -type f -mtime +3 -name "*.log" | xargs du -ch find ./ -name "*.log" | xargs du -ck 另一种方式: find /wasdump -name "*.20190515.*" | x ...
分类:其他好文   时间:2020-05-15 15:22:36    阅读次数:72
nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
nginx安装lua模块 出现LIBLUAJIT 5.1.SO.2错误的解决方法 云栖社区 阿里云 https://yq.aliyun.com/articles/604301 nginx lua 启动nginx报错找不到libluajit 5.1.so.2 会当凌绝顶的个人空间 OSCHINA ht ...
分类:其他好文   时间:2020-05-15 11:33:04    阅读次数:181
Android:沉浸式状态栏
参考自 "Android 沉浸式状态栏完美解决方案" 基本功能 1. 状态栏深色或浅色图标切换 2. 自定义状态栏背景 3. 设置沉浸式状态栏 集成 先准备几个工具类 1.SystemBarTintManager 2. StatusBarUtil 3. StatusBarHeightView 4. ...
分类:移动开发   时间:2020-05-15 10:04:09    阅读次数:74
公司OMS中前台Grid使用到的代码记录
function setGritCellValue(cell) { if (cell instanceof jQuery) { if (cell.length > 0) { var TextValue = cell[0].innerText + '%'; $(cell).find(".f-grid- ...
分类:其他好文   时间:2020-05-15 09:46:27    阅读次数:70
工作遇到问题的解决方案
css line-height 在google和fire 有一像素偏差 display-inline-block 对齐方式有问题 用 vertical-align:middle select option 只有火狐支持 onclick 解决办法 就是迷你select下拉菜单 $(this).find ...
分类:其他好文   时间:2020-05-14 22:20:09    阅读次数:91
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!