- 博客(20)
- 收藏
- 关注
原创 关于js函数后是否加;的问题---学习廖雪峰老师的node课时出现的问题
在学习廖老师的node-mysql-使用Sequelize时,按照老师的代码敲出来,运行的时候一直报错sequelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security, read more at http://docs.se...
2018-08-09 16:46:24 2755
原创 codeWar练习js
1.Build Tower即给定一个数,生成一个塔型结构例如;n=2=>[' * ', '***'],n=3=>[' * ', ' *** ', '*****']function towerBuilder(nFloors) { return Array.from({length:nFloors}).map((v,i)=>{ let space = ' '.repeat(...
2018-06-19 17:16:24 564
原创 廖老师的js教程练习
function string2int(str){ let arr = str.split('').map((x)=>{ return +x }) return arr.reduce(function(x,y){ return x*10 + y })}执行 +x即可把字符串强制转换成number类型
2018-06-14 10:50:16 505
原创 报错Unexpected side effect in "listShow" computed property
慕课网教程listShow计算下面购物车弹窗遇到问题<div class="shopcart-list" v-show="listShow"></div>listShow() { if (!this.totalCount) { this.fold = true return false } let sho...
2018-04-03 16:10:00 11869 5
原创 Updates were rejected because the tip of your current branch is behind
现在本地建了一个库interview,然后在github创建同名仓库interview并加入readme.md文件,push时会报错。因为两个库内容不一样了。网上搜索解决答案1.使用强制push的方法:$ git push -u origin master -f这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。2.push前先将远程repository修改pull下来...
2018-03-13 15:06:04 1056
原创 前端面试经验总结
3.8日面试一家互联网金融类公司,效果不佳,面试的很多基础问题没有回答到位。1.vue和react的生命周期有没有了解。2.对原型有没有了解3.对函数的继承有没有了解。4.js基础的原生对象5.对es6有没有了解,var和let的区别,const。6.promise的进程处理console.log('1')new Promise(()=>{ console.log('2') ret...
2018-03-08 20:57:20 311
原创 git操作初体验
一个名称表示一个仓库。所以每个仓库对应你本地的文件夹都有一个.git文件夹。通过$ git remote add origin git@github.com:michaelliao/learngit.git关联你的仓库时,远程库的名字为origin(此处关联的是廖雪峰老师的账户),以后你要往你的仓库推送内容时,只需要git push origin your-branch(之前我误认为一个仓库,就要...
2018-03-07 10:48:11 174
原创 ant Design初体验 之报错 ERROR in ./node_modules/antd/lib/button/style/index.less Module parse failed: /Us
使用ant design 按需加载时,比如按需加载Buttonimport Button from 'antd/lib/button';import 'antd/lib/button/style/css';后台运行webpack文件会报错ERROR in ./node_modules/antd/lib/button/style/index.lessModule parse failed
2018-01-31 21:38:56 25590
原创 webpack报错Module build failed: TypeError: fileSystem.statSync is not a function
跟着视频操作,删掉node_modules目录后,执行webpack报错ERROR in ./src/js/index.jsModule build failed: TypeError: fileSystem.statSync is not a function at module.exports (/Users/mac/source/9-01/node_modules/babel-
2018-01-29 22:38:01 8006
原创 webpack编译出错You may need an appropriate loader to handle this file type.
引用css时var footerCss = require("../../css/footer.css");运行报错You may need an appropriate loader to handle this file type.webpack.config.js配置如下var debug = process.env.NODE_ENV !== "production";var
2018-01-14 22:14:14 64545
原创 React.PropTypes.number控制台报错说number是undefined
组件里 BodyIndex.propTypes = { usernum: React.PropTypes.number };控制台报错显示的是:Cannot read property 'number' of undefined在之前的版本之中,我们可以通过React.PropTypes这个API访问React内置的一些类型来检查pro
2017-12-19 21:54:46 2485
转载 DIV+CSS规范命名大全集合
转载网址::http://www.divcss5.com/jiqiao/j4.shtml相对网页外层重要部分CSS样式命名: - TOP外套 wrap ------------------用于最外层头部 header ----------------用于头部主要内容 main ------------用于主体内容(中部)左侧 main-left -----
2017-05-04 11:14:20 601
原创 无限滚动js
h5音乐播放器 *{ margin: 0; padding: 0; list-style: none; } #box{ height: 80px; overflow: hidden; padding:10px; background: #333} ul{ font-size: 14px; border-bottom: 1px solid #
2017-04-06 22:27:18 622
转载 写一个通用的事件侦听器函数?
//Event工具集,from:github.com/markyunmarkyun.Event = { //页面加载完成后 readyEvent: function(fn) { if (fn == null) { fn = document; } var oldonload = window.onload; if
2017-04-05 12:11:03 503
原创 splice方法
splice() 方法始终都会返回一个数组,该数组中包含从原始数组中删除的项(如果没有删除任何项,则返回一个空数组)var colors = ["red", "green", "blue"];var removed = colors.splice(0,1); // 删除第一项alert(colors); // green,bluealert(removed); // red
2017-03-28 13:27:17 660
转载 js判断某个值是不是数组
自从 ECMAScript 3 做出规定以后,就出现了确定某个对象是不是数组的经典问题。对于一个网页,或者一个全局作用域而言,使用 instanceof 操作符就能得到满意的结果:if (value instanceof Array){//对数组执行某些操作}instanceof 操作符的问题在于,它假定只有一个全局执行环境。如果网页中包含多个框架,那实际上就存在两个以上不同的全局
2017-03-27 16:18:59 623
原创 JavaScript高级程序设计需要注意的地方
object作为参数在函数内部进行传递时,是依照值传递的方式传递的。可以将函数的参数看为局部变量。
2017-03-27 14:15:29 395
原创 多行文字溢出
无标题文档.text{width:100px; display:-webkit-box; overflow:hidden; text-overflow:ellipsis; word-break:break-all; -webkit-box-orient:vertical; -webkit-line-clamp:2;}常用电话--网络单位电话一口清常用电话
2017-03-24 15:40:43 257
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人