
typescript
g0415shenw
Stay hungry,Stay foolish
音视频交流群:759117824
GB28181技术交流群:708251501
UE4技术交流群:1036326334
展开
-
typescript之http请求
采用request库地址如下:https://github.com/request/request引入方式如下:import request = require('request')为什么这里用require呢?因为import会报错,原因如下:https://www.typescriptlang.org/docs/handbook/modules.html#export--and-import--require...原创 2021-04-03 14:35:45 · 2299 阅读 · 0 评论 -
typescript之hasOwnProperty
直接上示例function options() {}let opt = new options()opt.name = '5555'options.prototype.age = 26for (const name in opt) { console.log(name) if (Object.prototype.hasOwnProperty.call(opt, name)) { console.log(opt[name]) }}输出结果:name5555原创 2021-03-28 17:58:17 · 1728 阅读 · 0 评论 -
typescript之prototype
参考https://www.runoob.com/js/js-object-prototype.html直接代码说话吧:function person() {}person.prototype.test = function () { console.log(this.a)}let per1 = new person()per1.a = '456'per1.test() // 456person.prototype.test() //undefinedper1.tes原创 2021-03-27 20:47:30 · 1964 阅读 · 0 评论 -
typescript之nodejs开发
今天开始,正式进入基于typescripe的nodejs开发。检查node是否安装如下图:输入命令node --version打印如下,表示安装成功:原创 2020-11-29 16:00:56 · 1018 阅读 · 0 评论