上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: .vip-control-header{ width: 600px; height: auto; background: #F8F8F8; border: 1px solid #e2e2e2; padding: 10px 0 10px 10px; position: relative; border 阅读全文
posted @ 2019-03-09 10:28 Mr_R 阅读(5856) 评论(0) 推荐(0) 编辑
摘要: 在版本库中的文件,即使维护在.gitignore也不管用了.要先移除. 比如Constants.java,进入到这个文件目录下: 第一步:git rm -r -n —cached Constants.java (-n是为了不删掉文件) 第二步:git rm -r —cached Constants. 阅读全文
posted @ 2019-03-06 17:10 Mr_R 阅读(7224) 评论(0) 推荐(1) 编辑
摘要: 1、从原型入手,Array.prototype.isPrototypeOf(obj); 利用isPrototypeOf()方法,判定Array是不是在obj的原型链中,如果是,则返回true,否则false。 2、也可以从构造函数入手,obj instanceof Array 先说说 typeof 阅读全文
posted @ 2019-03-06 09:37 Mr_R 阅读(1677) 评论(0) 推荐(0) 编辑
摘要: 一:判断对象是否为空 4. 使用ES6的Object.keys()方法 //推荐方法还是放第一个吧 var data = {}; var arr = Object.keys(data); console.log(arr.length == 0); //true; 1. 转换成字符串进行比对 var 阅读全文
posted @ 2019-02-27 11:02 Mr_R 阅读(2642) 评论(0) 推荐(0) 编辑
摘要: js-cookie 安装: npm i js-cookie import Cookies from 'js-cookie' 具体用法: 创建一个过期的cookie,该cookie对当前页的路径有效: 摘自:https://www.cnblogs.com/xiangsj/p/9030648.html 阅读全文
posted @ 2019-02-27 10:26 Mr_R 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: vue-cli3按照官网教程配置搭建后,发现每次编译,eslint都抛出错误, 修改配置在 .eslintrc.js中修改 或者 关闭eslint 1、关闭eslint 直接注释掉package.json文件中eslint的配置就可以了(以下是vue-cli的默认配置) "eslintConfig" 阅读全文
posted @ 2019-02-26 14:56 Mr_R 阅读(527) 评论(0) 推荐(0) 编辑
摘要: let path = require('path')function resolve (dir) { return path.join(__dirname, dir)} module.exports = { baseUrl: './', outputDir: 'dist', lintOnSave: 阅读全文
posted @ 2019-02-26 14:09 Mr_R 阅读(4645) 评论(0) 推荐(0) 编辑
摘要: weex中css不能使用子元素选择器 刚入手可能会有错误,有误导地方请谅解,不过都是亲身踩坑 阅读全文
posted @ 2019-02-03 21:52 Mr_R 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 首先安装 weex debug 用 weex debug调试可以看到报错 我做的demo扫码扫不出来 是因为:class的原因 weex中:class只支持数组形式 或者 换成:style就可以了 另外 weex中不支持v-if 还有image的图片最好是绝对地址 阅读全文
posted @ 2019-01-24 17:19 Mr_R 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 在编辑器中可以正常编写不报错 但是在页面上不起作用 <style lang="scss" scoped></style> 第一步 安装依赖 第二部 配置loader 在configs/vue-loader.conf.js中配置 摘自:https://www.cnblogs.com/fanlinqia 阅读全文
posted @ 2019-01-23 21:43 Mr_R 阅读(791) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页