摘要: 解决办法 git rm -r --cached . git add . git commit -m 'update .gitignore' //windows 使用的命令是 git commit -m "update .gitignore" 需要使用双引号 .gitignore文件,具体的规则一搜就 阅读全文
posted @ 2019-01-10 17:22 编程猴子 阅读(27713) 评论(1) 推荐(2) 编辑
摘要: http://www.cnblogs.com/PatrickLiu/tag/Redis/ 阅读全文
posted @ 2018-03-08 13:13 编程猴子 阅读(136) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/PatrickLiu/category/1018980.html 阅读全文
posted @ 2018-03-08 13:11 编程猴子 阅读(103) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings/> <connectionStrings/> <system.web> <!--all--> <globalization requestEncoding="utf 阅读全文
posted @ 2018-02-01 15:04 编程猴子 阅读(355) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/16. */ export class hello{ } /*字符串新特性*/ /*----多行字符串------*/ var mulitStr=`多行字 符串`; /*----字符串模板---------*/ var name ='zhai liang'; var getName=function() { ... 阅读全文
posted @ 2017-11-15 22:57 编程猴子 阅读(150) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ //注解 告诉一个框架怎么来处理一个TypeScript程序 //类型定义文件(*.d.ts) //类型定义文件用来帮助开发者在TypeScript中使用已有的JavaScript的工具包 //如:Jquery export var prop1;//暴露这个属性 var prop2; //不对外暴露 ... 阅读全文
posted @ 2017-11-15 22:56 编程猴子 阅读(203) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ //一个文件就是一个模块 //export import export var prop1;//暴露这个属性 var prop2; //不对外暴露 export function func(){ } function func2()//不对外暴露 { $("xxx").add();//有了这个jq... 阅读全文
posted @ 2017-11-15 22:56 编程猴子 阅读(169) 评论(0) 推荐(0) 编辑
摘要: import {prop1, C1,func} from "./ts9"; /** * Created by ufo9631 on 2017/5/25. */ console.log(prop1); func(); new C1(); export function func3() { } 阅读全文
posted @ 2017-11-15 22:55 编程猴子 阅读(92) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ var name:string; function test1() { let name:string; name="Hello world"; console.log(name); } test1(); 阅读全文
posted @ 2017-11-15 22:55 编程猴子 阅读(107) 评论(0) 推荐(0) 编辑
摘要: /** * Created by ufo9631 on 2017/5/25. */ //一个文件就是一个模块 //export import export var prop1;//暴露这个属性 var prop2; //不对外暴露 export function func(){ } function func2()//不对外暴露 { } export class C1{ ... 阅读全文
posted @ 2017-11-15 22:54 编程猴子 阅读(113) 评论(0) 推荐(0) 编辑