上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 1、至少要具备两种技能养活一个家庭 2、多看看原生js的书籍 记录总结自己 3、多学习怎么当奶爸怎么教育好这是个持久的过程 4、遇到事情不能马上冲动、要冷静理智对待。 5、我当爸爸了要多努力存两个建设银行 阅读全文
posted @ 2019-02-24 14:29 顺其自然²º¹? 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1、购买的阿里云需要添加安全组 80端口就可以用了 2、检查防火墙是否关闭 systemctl stop firewalld 这点很重要 我就是查了一天才发现centos7 防火墙开着 难怪几把搞 如果不行 那就要看看你nginx部署访问是不是正确 检查多细心一点没错 阅读全文
posted @ 2018-10-16 10:42 顺其自然²º¹? 阅读(760) 评论(0) 推荐(0) 编辑
摘要: 今年在一家苏州某公司 干了三个月 做过三个项目 一个是微信小程序 是商城购买、显示附近店铺、有微信支付功能、我的全部订单 二个是印刷搜搜 嵌入app 刚开始因为团队的水平参差不齐统一用h5 不过我先用vue以script方式加载引用 方便渲染数据 跟app同事约定 写出ios和安卓调用参数传入的方法 阅读全文
posted @ 2018-08-26 23:28 顺其自然²º¹? 阅读(121) 评论(0) 推荐(0) 编辑
摘要: function GetDateDiff(DiffTime) { //将xxxx-xx-xx的时间格式,转换为 xxxx/xx/xx的格式 Time = DiffTime.replace(/\-/g, "/"); return Time; } function GetDateDiff(DiffTim 阅读全文
posted @ 2018-08-09 16:06 顺其自然²º¹? 阅读(182) 评论(0) 推荐(0) 编辑
摘要: //路径跳转 urlHref(item) {//人物、访谈、动态是一个页面 var para = {}; para.title = "动态详情"; para.type = "searchDetails"; if(this.type == 10){//二手 ... 阅读全文
posted @ 2018-08-01 12:00 顺其自然²º¹? 阅读(552) 评论(0) 推荐(0) 编辑
摘要: var end_time = grouponList.expire_time.replace(/-/g, '/') grouponcountdown(that, end_time) //适用于商品列表倒计时/** * end_time int 结束时间 * param int 数组键 */ function grouponcountdown(that, end_time) { va... 阅读全文
posted @ 2018-06-27 16:17 顺其自然²º¹? 阅读(561) 评论(0) 推荐(0) 编辑
摘要: vue中所有的钩子函数: beforeCreate(创建前) created(创建后) beforeMount(载入前) mounted(载入后) beforeUpdate(更新前) updated(更新后) beforeDestroy(销毁前) destroyed(销毁后) 生命周期函数 阅读全文
posted @ 2018-06-22 09:33 顺其自然²º¹? 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 背景 限制 SPA 应用已经成为主流,在项目开发阶段产品经理和后端开发同学经常要查看前端页面,下面就是我们团队常用的使用 express 搭建的 SPA 静态资源服务器方案。 为 SPA 应用添加入口(index.html)的 sendFile 当 SPA 应用开启 html5 mode 的情况下, 阅读全文
posted @ 2018-05-09 11:19 顺其自然²º¹? 阅读(1381) 评论(0) 推荐(1) 编辑
摘要: 在linux shell中不显示路径了,显示为-bash-4.1#用起来很不方便。 如何改为显示路径的shell呢? 步骤如下: vim ~/.bash_profile (不用管.bash_profile这个文件有几个,自己新建一个也是可以的) 在最后加上 export PS1='[\u@\h \W]\$' 然后执行 source ~/.bash_profile 这样shell就可... 阅读全文
posted @ 2018-01-26 10:57 顺其自然²º¹? 阅读(1417) 评论(0) 推荐(0) 编辑
摘要: var db = {}; var mysql = require('mysql'); var pool = mysql.createPool({ connectionLimit: 10, host: '192.168.188.26', user: 'aaa', password: '123456', port: '3306', database: ... 阅读全文
posted @ 2017-12-01 18:07 顺其自然²º¹? 阅读(326) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页