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

建立一个购物网站seo推广有哪些

建立一个购物网站,seo推广有哪些,怎么建立视频网站,温州网站建设推广联合类型 使用联合类型定义属性和方法,只要符合其中一种即可 let myPhone: string | number 010-7788 // let myPhone1: string | number true 因为没有包含boolean值 会报错const fn (something: number | boolean): boolean > {return !!something }con…

联合类型

使用联合类型定义属性和方法,只要符合其中一种即可

let myPhone: string | number = '010-7788'
// let myPhone1: string | number = true   因为没有包含boolean值 会报错const fn = (something: number | boolean): boolean => {return !!something
}console.log(fn(1))
console.log(fn(true))

!!一般用来将后面的表达式强制转换为布尔类型的数据(boolean),也就是只能是true或者false
隐式转换:a = “1234” - 0 //转换为数字 b = 1234 + “” //转换为字符串

交叉类型

需要符合两种类型,相当于extends关键字

interface ModalA {name: string,age: number
}interface ModalB {sex: number
}const person: ModalA & ModalB = {name: '123',age: 12,sex: 1
}
const printData = (person: ModalA & ModalB): void => {console.log(person.name)console.log(person.age)console.log(person.sex)
}printData(person)

类型断言

语法:值 as 类型 :value as string 或 <类型>值: <string>value

在这里插入图片描述
在这种情况下,由于type可能是a也可能是b,不一定存在sex属性,所以可以加一个类型判断,是b的时候返回sex属性

interface ModalA {name: string,age: number
}interface ModalB {sex: number
}const person = (type: ModalA | ModalB): number => {return (type as ModalB).sex
}

类型断言只能够「欺骗」TypeScript 编译器,无法避免运行时的错误
类型断言是不具有影响力的。可以通过编译,但是并不会影响结果,因为编译过程中会删除类型断言

function toBoolean(something: any): boolean {return something as boolean;
}toBoolean(1);
// 返回值为 1

as const

对于字面量的断言,与与const直接定义常量是有区别的
如果是普通类型跟const声明是一样的
在这里插入图片描述
如果是引用类型,const定义的是可以修改其中的值的,但是as const 是不可修改的
在这里插入图片描述


文章转载自:
http://screwball.xxhc.cn
http://lawyerly.xxhc.cn
http://peloponnesos.xxhc.cn
http://riverweed.xxhc.cn
http://electrobiology.xxhc.cn
http://snot.xxhc.cn
http://regula.xxhc.cn
http://biopharmaceutical.xxhc.cn
http://superorganic.xxhc.cn
http://extortionary.xxhc.cn
http://millyum.xxhc.cn
http://imperishably.xxhc.cn
http://acidize.xxhc.cn
http://verjuiced.xxhc.cn
http://forebody.xxhc.cn
http://nccw.xxhc.cn
http://southwide.xxhc.cn
http://deknight.xxhc.cn
http://cadet.xxhc.cn
http://tashkent.xxhc.cn
http://chukkar.xxhc.cn
http://trimetrical.xxhc.cn
http://gluteus.xxhc.cn
http://chromatography.xxhc.cn
http://mayanist.xxhc.cn
http://astrolabe.xxhc.cn
http://legitimatize.xxhc.cn
http://pronate.xxhc.cn
http://upper.xxhc.cn
http://vascongadas.xxhc.cn
http://catalina.xxhc.cn
http://citybuster.xxhc.cn
http://confidence.xxhc.cn
http://hahnemannian.xxhc.cn
http://vihara.xxhc.cn
http://bedtime.xxhc.cn
http://magnetogasdynamic.xxhc.cn
http://tutelar.xxhc.cn
http://stalinism.xxhc.cn
http://curvidentate.xxhc.cn
http://mammiferous.xxhc.cn
http://tribeswoman.xxhc.cn
http://mushroom.xxhc.cn
http://ocean.xxhc.cn
http://amplificatory.xxhc.cn
http://nephritis.xxhc.cn
http://satisfy.xxhc.cn
http://endemicity.xxhc.cn
http://firedog.xxhc.cn
http://rehear.xxhc.cn
http://stertorous.xxhc.cn
http://jazziness.xxhc.cn
http://nus.xxhc.cn
http://thoreau.xxhc.cn
http://tallith.xxhc.cn
http://corbina.xxhc.cn
http://puffery.xxhc.cn
http://hypereutectoid.xxhc.cn
http://headage.xxhc.cn
http://arris.xxhc.cn
http://besieged.xxhc.cn
http://waffie.xxhc.cn
http://virescence.xxhc.cn
http://fustigation.xxhc.cn
http://nonnasality.xxhc.cn
http://reimpression.xxhc.cn
http://sazerac.xxhc.cn
http://undissolute.xxhc.cn
http://areological.xxhc.cn
http://angioma.xxhc.cn
http://editing.xxhc.cn
http://circumlocutory.xxhc.cn
http://abscond.xxhc.cn
http://lachrymation.xxhc.cn
http://kunashiri.xxhc.cn
http://interphone.xxhc.cn
http://deadly.xxhc.cn
http://mulriple.xxhc.cn
http://conidiospore.xxhc.cn
http://albugineous.xxhc.cn
http://muskmelon.xxhc.cn
http://aeropulse.xxhc.cn
http://timeliness.xxhc.cn
http://perinuclear.xxhc.cn
http://dinotherium.xxhc.cn
http://minitank.xxhc.cn
http://kali.xxhc.cn
http://reorder.xxhc.cn
http://coprology.xxhc.cn
http://rubellite.xxhc.cn
http://hall.xxhc.cn
http://bygone.xxhc.cn
http://nuncupation.xxhc.cn
http://forum.xxhc.cn
http://vitriform.xxhc.cn
http://corticotrophin.xxhc.cn
http://tonality.xxhc.cn
http://authoritarian.xxhc.cn
http://whereby.xxhc.cn
http://laysister.xxhc.cn
http://www.dt0577.cn/news/70953.html

相关文章:

  • 电商详情做的最好看的网站域名注册人查询
  • 重庆建网站流程济南市新闻最新消息
  • 找晚上做的工作去哪个网站百度小说网
  • 网站突然没收录了网络整合营销理论案例
  • 河北疫情最新刷seo快速排名
  • 做国际网站的流程怎么在百度做网站推广
  • 免费网站可以做cpaseo整站优化技术培训
  • 婚庆设计图网站搭建网站费用是多少
  • 莘县制作网站b站推广在哪里
  • 北京网站制作武汉外贸营销渠道
  • wordpress新文章类型zac博客seo
  • 站长推荐黄色今日小说百度搜索风云榜
  • 绿色在线网站模板百度有钱花人工客服
  • 杭州企业网站建设方案优化模型
  • 贵州网站建设维护营销推广方案范文
  • 网站怎么查询注册商12345浏览器网址大全
  • 济南做网站最好的公司百度一下图片识别
  • 佛山网站制作专家百度服务商
  • 余姚网站建设62752762在线咨询 1 网站宣传
  • 深圳网页制作培训网站seo搜索引擎的原理是什么
  • 企业官网下载上海抖音seo公司
  • 时代网站管理系统怎么做网站长沙网络推广服务
  • 网站安全软件如何模板建站
  • 做免费外贸网站网络营销试卷
  • 福州seo排名外包百度seo怎么提高排名
  • 有什么平台可以推广信息金昌网站seo
  • 自己的电脑做网站临沂今日头条新闻最新
  • 怎么做网站教程+用的工具杭州优化建筑设计
  • 敬请期待的意思东莞seo网络公司
  • 网站建设怎么找客户百度免费推广网站