上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: 一、首先要确保电脑已经成功安装好git了。(记住git的安装位置)二、这里需要给webstorm配置一下:依次点击:file –> Settings –> Version Control –>Git只需要在红框部分选择git的正确安装路径(找到git.exe),点击OK,配置完成。 如果不确定git 阅读全文
posted @ 2019-04-18 16:07 探索之路慢慢 阅读(1347) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/maplejaw_/article/details/52874348 阅读全文
posted @ 2019-03-13 16:55 探索之路慢慢 阅读(541) 评论(0) 推荐(0)
摘要: https://www.w3cplus.com/javascript/array-part-6.html 阅读全文
posted @ 2019-01-25 15:50 探索之路慢慢 阅读(184) 评论(0) 推荐(0)
摘要: 第一首先你运行一下它的js代码: var arr1=["大学","中庸","论语","孟子","诗","尚书","礼记","易"]; var index=arr1.indexOf("中庸");//观察它输出的结果是多少?它代表就是数组元素“中庸"在数组位置为1,从0数起; 如果你把它改为arr1.i 阅读全文
posted @ 2019-01-25 15:45 探索之路慢慢 阅读(1129) 评论(0) 推荐(0)
摘要: 1.首先打包前端上传 修改config下的index.js 代理地址为服务器IP index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsS 阅读全文
posted @ 2019-01-18 16:02 探索之路慢慢 阅读(1958) 评论(0) 推荐(0)
摘要: 最近window系统转向linux系统开发,linux系统的确适合程序员的开发。 作为前端安装了nodejs和npm,遇到了一些坑,赶紧记录下来第一种安装方法:安装nodejs : sudo apt-get install nodejs运行 nodejs -v 会弹出安装node的版本号这里使用的是 阅读全文
posted @ 2019-01-11 17:52 探索之路慢慢 阅读(274) 评论(0) 推荐(0)
摘要: 判断js中的数据类型有一下几种方法:typeof、instanceof、 constructor、 prototype、 $.type()/jquery.type(),接下来主要比较一下这几种方法的异同。 先举几个例子: 1、最常见的判断方法:typeof 2、判断已知对象类型的方法: instan 阅读全文
posted @ 2018-12-16 19:15 探索之路慢慢 阅读(335) 评论(0) 推荐(0)
摘要: 1. https://itbilu.com/nodejs/npm/VkYIaRPz-.html#api-init 2. http://docs.sequelizejs.com/manual/tutorial/querying.html 3. https://itbilu.com/nodejs/npm 阅读全文
posted @ 2018-11-19 15:35 探索之路慢慢 阅读(1294) 评论(0) 推荐(0)
摘要: Sequelize 是 Node 的一个 ORM(Object-Relational Mapping) 框架,用来方便数据库操作。 配置 sequelize 以 mysql 为例 首先我们要引入npm包,sequelize 依赖 mysql2 作为底层驱动,暴露出自己的 API 让我们调用,在转成 阅读全文
posted @ 2018-11-19 15:34 探索之路慢慢 阅读(12296) 评论(0) 推荐(1)
摘要: 1. 手动重启 cd http ll cd /etc/httpd/ ll service httpd restart 2. 查看服务器内存使用情况 df -h 3. 自动重启 cat /etc/issue 或者 cat /proc/version 或者 uname -r chkconfig --ad 阅读全文
posted @ 2018-11-08 10:01 探索之路慢慢 阅读(1392) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页