10 2018 档案

摘要:$router 和 $route的区别 $route为当前router跳转对象里面可以获取name、path、query、params等 $router为VueRouter实例,想要导航到不同URL,则使用$router.push方法 返回上一个history也是使用$router.go方法 $ro 阅读全文
posted @ 2018-10-28 17:21 Duan? 阅读(5478) 评论(0) 推荐(0)
摘要:前端面试总结 :http、html和浏览器篇 1.http和https https的SSL加密是在传输层实现的。 (1)http和https的基本概念 http: 超文本传输协议,是互联网上应用最为广泛的一种网络协议,是一个客户端和服务器端请求和应答的标准(TCP),用于从WWW服务器传输超文本到本 阅读全文
posted @ 2018-10-28 17:15 Duan? 阅读(795) 评论(0) 推荐(0)
摘要:git中常见操作指令 从git上拉下一个项目: 1、git clone 项目链接 2、 git checkout development (切换到development分支) 3、git pull origin development(获取development上最新的代码) 4、git pull 阅读全文
posted @ 2018-10-11 21:34 Duan? 阅读(346) 评论(0) 推荐(0)