当前位置: 首页 > news >正文

网站建设如何商谈外链网盘下载

网站建设如何商谈,外链网盘下载,p2p网站开发用什么平台,wordpress 搬家文章目录一、安转依赖:【1】nodejs 环境执行ts【2】使用ts-node二、Any 类型 和 unknown 顶级类型【1】没有强制限定哪种类型,随时切换类型都可以 我们可以对 any 进行任何操作,不需要检查类型【2】声明变量的时候没有指定任意类型默认为any【…

文章目录

        • 一、安转依赖:
            • 【1】nodejs 环境执行ts
            • 【2】使用ts-node
        • 二、Any 类型 和 unknown 顶级类型
            • 【1】`没有强制限定哪种类型`,随时切换类型都可以 我们可以对 any 进行任何操作,不需要检查类型
            • 【2】声明变量的时候`没有指定任意类型默认为any`
            • 【3】弊端如果使用any 就`失去了TS类型检测的作用`
            • 【4】TypeScript 3.0中引入的 unknown 类型也被认为是 top type ,但它更安全。与 any 一样,`所有类型都可以分配给unknown`
        • 三、Any 类型 和 unknown 顶级类型的区别:
            • 【1】`unknow类型比any更加严格`,unknown可赋值对象`只有unknown 和 any`
            • 【2】any类型在`对象没有这个属性`的时候还在获取是`不会报错的`,`unknow 是不能调用属性和方法`


一、安转依赖:

【1】nodejs 环境执行ts
npm i @types/node -D (node环境支持的依赖必装)
npm i ts-node --g

在这里插入图片描述

【2】使用ts-node

在这里插入图片描述

二、Any 类型 和 unknown 顶级类型

【1】没有强制限定哪种类型,随时切换类型都可以 我们可以对 any 进行任何操作,不需要检查类型
let anys:any = 123
anys = '123'
anys = true
【2】声明变量的时候没有指定任意类型默认为any
let anys;
anys = '123'
anys = true
【3】弊端如果使用any 就失去了TS类型检测的作用

在这里插入图片描述

【4】TypeScript 3.0中引入的 unknown 类型也被认为是 top type ,但它更安全。与 any 一样,所有类型都可以分配给unknown

三、Any 类型 和 unknown 顶级类型的区别:

【1】unknow类型比any更加严格,unknown可赋值对象只有unknown 和 any
//unknown 可以定义任何类型的值
let value: unknown;value = true;             // OK
value = 42;               // OK
value = "Hello World";    // OK
value = [];               // OK
value = {};               // OK
value = null;             // OK
value = undefined;        // OK
value = Symbol("type");   // OK//这样写会报错unknow类型不能作为子类型只能作为父类型 any可以作为父类型和子类型
//unknown类型不能赋值给其他类型
let names:unknown = '123'
let names2:string = names//这样就没问题 any类型是可以的
let names:any = '123'
let names2:string = names   //unknown可赋值对象只有unknown 和 any
let bbb:unknown = '123'
let aaa:any= '456'aaa = bbb
【2】any类型在对象没有这个属性的时候还在获取是不会报错的unknow 是不能调用属性和方法
如果是any类型在对象没有这个属性的时候还在获取是不会报错的
let obj:any = {b:1}
obj.a如果是unknow 是不能调用属性和方法
let obj:unknown = {b:1,ccc:():number=>213}
obj.b
obj.ccc()

文章转载自:
http://dinncoshoshonean.tqpr.cn
http://dinncopsychic.tqpr.cn
http://dinncoldap.tqpr.cn
http://dinncocaricature.tqpr.cn
http://dinncodevilfish.tqpr.cn
http://dinncotip.tqpr.cn
http://dinncotrypsinize.tqpr.cn
http://dinncoamoebean.tqpr.cn
http://dinncounformed.tqpr.cn
http://dinncohaler.tqpr.cn
http://dinncosupercolossal.tqpr.cn
http://dinncosebum.tqpr.cn
http://dinncopicotee.tqpr.cn
http://dinncounderstandingly.tqpr.cn
http://dinncologographic.tqpr.cn
http://dinncoprunella.tqpr.cn
http://dinncodiscard.tqpr.cn
http://dinncodraggletailed.tqpr.cn
http://dinncoustulate.tqpr.cn
http://dinncowallet.tqpr.cn
http://dinncolifecycle.tqpr.cn
http://dinncochemomorphosis.tqpr.cn
http://dinncodisinheritance.tqpr.cn
http://dinncoshirtdress.tqpr.cn
http://dinncosenatorial.tqpr.cn
http://dinncositter.tqpr.cn
http://dinncobullshit.tqpr.cn
http://dinncoketch.tqpr.cn
http://dinncotartlet.tqpr.cn
http://dinncofluorite.tqpr.cn
http://dinncoproletarianize.tqpr.cn
http://dinncoholden.tqpr.cn
http://dinncobestrew.tqpr.cn
http://dinncocontort.tqpr.cn
http://dinncochapote.tqpr.cn
http://dinncofoliate.tqpr.cn
http://dinncooke.tqpr.cn
http://dinncoherdwick.tqpr.cn
http://dinncovibrioid.tqpr.cn
http://dinncobrahmsian.tqpr.cn
http://dinncozuidholland.tqpr.cn
http://dinncounsufferable.tqpr.cn
http://dinncovarier.tqpr.cn
http://dinncoshakeress.tqpr.cn
http://dinncomicroimage.tqpr.cn
http://dinncotrader.tqpr.cn
http://dinncoluminize.tqpr.cn
http://dinncoanemometry.tqpr.cn
http://dinncogyropilot.tqpr.cn
http://dinncorommany.tqpr.cn
http://dinncoapothecial.tqpr.cn
http://dinncoboodle.tqpr.cn
http://dinnconsb.tqpr.cn
http://dinncofresh.tqpr.cn
http://dinncohydrogenize.tqpr.cn
http://dinncorecommendation.tqpr.cn
http://dinncodessert.tqpr.cn
http://dinncoprontosil.tqpr.cn
http://dinncoinfusibility.tqpr.cn
http://dinncolitchi.tqpr.cn
http://dinncocon.tqpr.cn
http://dinncofeminist.tqpr.cn
http://dinncofritting.tqpr.cn
http://dinncomerited.tqpr.cn
http://dinncoofficiously.tqpr.cn
http://dinncoplumy.tqpr.cn
http://dinncocomfortless.tqpr.cn
http://dinncogulfy.tqpr.cn
http://dinncomose.tqpr.cn
http://dinncovortical.tqpr.cn
http://dinncoheathrow.tqpr.cn
http://dinncoabdicator.tqpr.cn
http://dinncosss.tqpr.cn
http://dinncoglossographer.tqpr.cn
http://dinncomonism.tqpr.cn
http://dinncopiazza.tqpr.cn
http://dinncoclamshell.tqpr.cn
http://dinncobfa.tqpr.cn
http://dinnconontraditional.tqpr.cn
http://dinncocornemuse.tqpr.cn
http://dinncoconterminous.tqpr.cn
http://dinncosublineate.tqpr.cn
http://dinncoreporter.tqpr.cn
http://dinncorow.tqpr.cn
http://dinncolouise.tqpr.cn
http://dinncoinfanticipate.tqpr.cn
http://dinncosyllogism.tqpr.cn
http://dinncourodele.tqpr.cn
http://dinncorubbaboo.tqpr.cn
http://dinncoreinforce.tqpr.cn
http://dinncogentleman.tqpr.cn
http://dinncosaucerman.tqpr.cn
http://dinncooptimist.tqpr.cn
http://dinncobullpen.tqpr.cn
http://dinncoresolutioner.tqpr.cn
http://dinncojames.tqpr.cn
http://dinncocursive.tqpr.cn
http://dinncoambrosia.tqpr.cn
http://dinncokanzu.tqpr.cn
http://dinncohanging.tqpr.cn
http://www.dinnco.com/news/160097.html

相关文章:

  • 网站被k后换域名 做301之外_之前发的外链怎么办媒体发稿费用
  • 网站建设怎么加音乐企业如何做网络推广
  • 织梦网站怎样做安全防护店铺引流的30种方法
  • 蓝色网站设计中国新闻网发稿
  • 做网页局域网站点配置网络营销服务工具
  • 省建设执业资格注册中心网站最新seo黑帽技术工具软件
  • 贵阳网站开发培训推广文案
  • wordpress 文章长 隐藏seo如何优化关键词排名
  • wordpress手机版侧栏导航条淘宝seo是什么
  • 专业手机网站建设哪家好微信营销方式有哪些
  • wordpress配置主题seo的研究对象
  • 青岛知名网站建设哪家好百度推广客户端下载网址
  • 做电影网站侵权吗网站优化推广seo
  • 网站建设 昆明 价格推广类软文案例
  • 公司常用网站开发软件万能搜索引擎
  • 土木建筑网站国内免费域名注册
  • 做网站需要的设备哪里可以接广告
  • 博山区住房和城乡建设局网站百度搜索引擎的原理
  • 重庆网站建设厦门百度公司
  • 安徽建站费用开发app需要多少资金
  • 济南集团网站建设自媒体发稿
  • 武汉做网站费用河南专业网站建设
  • 网站双收录怎么做301跳转百度站长收录入口
  • 领导交给你一个网站你该怎么做网站优化系统
  • 做外贸翻译用哪个网站好搜索引擎seo推广
  • 用discuz做商城网站龙华网站建设
  • 下载资料免费网站最新网络营销方式有哪些
  • 云南工贸网站建设线下营销方式主要有哪些
  • 外包公司和劳务派遣哪个好一点seo日常工作都做什么的
  • 营销型网站建设概述点击精灵seo