上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 97 下一页
摘要: 在 TypeScript 中,Promise 是用于处理异步操作的对象。它表示一个可能在未来某个时间点完成或失败的操作,并返回操作结果或错误。 Promise 可以有三种状态: pending(进行中):Promise 的初始状态,表示操作正在进行中。 fulfilled(已完成):表示操作成功完成 阅读全文
posted @ 2024-03-27 09:21 txwtech 阅读(968) 评论(0) 推荐(0) 编辑
摘要: ts reduce用法.……在TypeScript中, reduce.是一种韭常强大而且常用的数组方法, 它可以用来对数组中的元素进行累加操作。 在使用reduce 时,我们需要传递一个函数作为参数,这个函数接收两个参数:第一个参数是累加器(也就是上一次调用函数的返回值),第二个参数是当前遍历到的数 阅读全文
posted @ 2024-03-26 14:47 txwtech 阅读(809) 评论(0) 推荐(0) 编辑
摘要: //元组--需要显式的注解类型,数组 let a:[number] = [1] let b:[string,string,number] = ["a","b",1] //b = ["a","a","a"]错误 let trainFares:[number,number?][]=[ //中括号的问号表 阅读全文
posted @ 2024-03-26 13:59 txwtech 阅读(42) 评论(0) 推荐(0) 编辑
摘要: let message:string ='hello nice day'; console.log(message); console.log("ok,good luck11111111111"); let a = 1+2; let b= a+3; let c={ apple:a, banana:b 阅读全文
posted @ 2024-03-26 11:53 txwtech 阅读(12) 评论(0) 推荐(0) 编辑
摘要: TypeScript 是一种 JavaScript 的超集,它在语法层面上对 JavaScript 进行了扩展,提供了强类型、类、接口等面向对象的特性,并且可以通过编译器将 TypeScript 代码转换成 JavaScript 代码。在开发 TypeScript 项目时,我们通常会使用 webpa 阅读全文
posted @ 2024-03-26 11:49 txwtech 阅读(540) 评论(0) 推荐(0) 编辑
摘要: { "name": "test1", "version": "1.0.0", "main": "index.html", "dependencies": { "ts-node": "^10.9.2" }, "devDependencies": { "@types/node": "^20.11.30" 阅读全文
posted @ 2024-03-26 11:43 txwtech 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 胶囊按钮样式 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:shape="rectangle"> <corners ohos:radius="100 阅读全文
posted @ 2024-03-25 21:50 txwtech 阅读(36) 评论(0) 推荐(0) 编辑
摘要: VScode启动typescript监视任务自动把TS转换成JS 修改TS文件,保存后,相应的js文件一起改变 翻译 搜索 复制 阅读全文
posted @ 2024-03-25 09:38 txwtech 阅读(45) 评论(4) 推荐(0) 编辑
摘要: config.json声明权限配置方法 阅读全文
posted @ 2024-03-24 22:19 txwtech 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 更改UI界面后,保存UI界面; 返回VS中,找到UI界面文件,右击->编译;或者选中编辑的UI,按下ctrl+F7 选择项目,重新扫描解决方案,不行就多执行一次 翻译 搜索 复制 阅读全文
posted @ 2024-03-22 17:31 txwtech 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 97 下一页