会员
周边
新闻
博问
闪存
众包
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
captain喵
首页
新随笔
管理
2017年7月7日
Git命令大全
摘要: 初始化本地git仓库(创建新仓库) git init 配置用户名 git config --global user.name "xxx" 配置邮件 git config --global user.email "xxx@xxx.com" git status等命令自动着色 git config --
阅读全文
posted @ 2017-07-07 11:06 captain喵
阅读(1313)
评论(0)
推荐(0)
2017年4月24日
数据的跨域请求解决方案
摘要: 客户端:站在获取服务的角度 http://mp.weixin.qq.com/s/asmzA8a1HuYQxyx8K0q-9g 服务器:站在提供服务的角度(based PHP) http://www.runoob.com/w3cnote/php-ajax-cross-border.html
阅读全文
posted @ 2017-04-24 16:26 captain喵
阅读(238)
评论(0)
推荐(0)
2017年2月23日
vue 的常用模块安指令(持续记录)
摘要: # 全局安装 vue-cli $ cnpm install --global vue-cli # 创建一个基于 webpack 模板的新项目 $ vue init webpack my-project # 路由管理模块 $ npm install vue-router --save # 状态管理模块
阅读全文
posted @ 2017-02-23 11:15 captain喵
阅读(751)
评论(0)
推荐(0)
2017年2月16日
Vuejs环境搭建
摘要: 1.安装Node.js ,因为Nodejs里面有附带的npm (node包管理器),以下是我自己亲测有效的步骤,我的电脑配置时win7 64位 Node下载链接: 32 位安装包下载地址 : https://nodejs.org/dist/v4.4.3/node-v4.4.3-x86.msi64 位
阅读全文
posted @ 2017-02-16 15:45 captain喵
阅读(3332)
评论(0)
推荐(0)
JavaScript数组去重
摘要: 来自:AnnatarHe's blog 链接:https://annatarhe.github.io/2016/12/21/some-diff-filter-method.html(点击尾部阅读原文前往) 前端开发过程中常常要对后端或管理端接口返回的数据进行处理展示,数据去重,常常用到,发现一篇好的
阅读全文
posted @ 2017-02-16 13:17 captain喵
阅读(217)
评论(0)
推荐(0)