摘要: json = { } JSON 字符串必须使用双引号,单引号会出现错误 三种类型: 简单值:字符串、数值、布尔值、null 对象:无序的键值对儿 数组:有序的值列表 解析:JSON.eval() //最早期 会执行恶意代码 不建议使用 JSON.stringify(); // 转化成 json 对象 阅读全文
posted @ 2016-06-04 22:45 taoquns 阅读(280) 评论(0) 推荐(0)
摘要: 1、下载安装git 2、初始化 仓库文件夹 git init 3、生成公钥ssh-keygen -t rsa -C "youremail@example.com"4、github 添加公钥 5、关联远程仓库git remote add origin git@github.com:taoqun/myp 阅读全文
posted @ 2016-06-04 21:07 taoquns 阅读(1407) 评论(0) 推荐(0)