在上篇Angular遇上CoffeeScript – NgComponent封装中,我们讲述了CoffeeScript这门小巧的语言,摒弃JavaScript中糟粕(“坑”)部分,并将JavaScript中精粹部分发挥到淋淋尽致。虽然笔者更喜欢ES6 + Babel或者TypeScript这类鲜明特...
分类:
编程语言 时间:
2015-09-22 09:58:46
阅读次数:
144
◆ TypeScript在vs2012下的问题TypeScript对VS2012支持度比较低,建议升级为VS2013版本。◆ 在VS2013中无法创建TypeScript项目VS2013默认不支持TypeScript。需要在【工具】-【扩展和更新】中安装TypeScript,目前为止(2015年9月...
分类:
其他好文 时间:
2015-09-16 17:45:04
阅读次数:
605
在我们没有引入模块化之前,我们的typescript代码可能这样写:interface StringValidator { isAcceptable(s: string): boolean;}var lettersRegexp = /^[A-Za-z]+$/;var numberRegexp ...
分类:
其他好文 时间:
2015-09-14 13:51:12
阅读次数:
91
注意,这个和C#的写法不太一样:var passcode = "secret passcode";class Employee { private _fullName: string; get fullName(): string { return this._fullNa...
分类:
其他好文 时间:
2015-09-14 11:58:40
阅读次数:
161
来看看怎么用typescript实现链表:class Student { public fullname: string; public Next: Student; constructor(public firstname, private middleinitial, publ...
分类:
其他好文 时间:
2015-09-09 13:17:48
阅读次数:
997
string:function greeter(person: string) { return "Hello, " + person;}var user = "Jane User";document.body.innerHTML = greeter(user);Array:function ...
分类:
其他好文 时间:
2015-09-09 13:17:42
阅读次数:
128
1, 安装typescript 在IDE上后打开一个空的web app, 添加一个typescript file和 HTML file, 安装typescript package:typescript file:function greeter(person) { return "" + pe...
分类:
其他好文 时间:
2015-09-09 11:24:18
阅读次数:
130
MSDN中的一篇博文链接:Tutorial series: learning how to write a 3D soft engine from scratch in C#, TypeScript or JavaScriptThis tutorial is part of the followin...
分类:
编程语言 时间:
2015-09-05 22:19:58
阅读次数:
261
函数 函数是JavaScript中任意应用程序的基本构件块。可以在函数基础上建立抽象层,模拟类,信息隐藏,模块。在TypeScript中,虽然已经有类和模块,但函数函数仍然扮演着如何做事的关键角色。TypeScript还在标准J...
分类:
其他好文 时间:
2015-09-05 12:36:35
阅读次数:
218
博客园首发,转载请注明出处,多谢支持。http://www.cnblogs.com/xuema/函数的定义与调用在TypeScript中定义函数的语法为:function function_name(arg:number,arg1:number,....):return_type{ code 函数要...
分类:
其他好文 时间:
2015-08-31 16:49:59
阅读次数:
143