中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用typescript編寫一個微信小程序項目

發布時間:2021-01-29 14:55:13 來源:億速云 閱讀:447 作者:Leah 欄目:開發技術

如何使用typescript編寫一個微信小程序項目?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

{
 "name": "miniprogram-ts-quickstart",
 "version": "1.0.0",
 "description": "",
 "scripts": {
 "compile": "./node_modules/typescript/bin/tsc",
 "tsc": "node ./node_modules/typescript/lib/tsc.js"
 },
 "keywords": [],
 "author": "",
 "license": "",
 "dependencies": {
 },
 "devDependencies": {
 "typescript": "^4.1.3",
 "miniprogram-api-typings": "^2.12.1-beta.0"
 }
}

編輯 tsconfig.json 文件, 修改 lib 為 ["esnext"],支持最新語法, 刪除 typeRoots 配置項

{
 "compilerOptions": {
 "strictNullChecks": true,
 "noImplicitAny": true,
 "module": "CommonJS",
 "target": "ES5",
 "allowJs": false,
 "experimentalDecorators": true,
 "noImplicitThis": true,
 "noImplicitReturns": true,
 "alwaysStrict": true,
 "inlineSourceMap": true,
 "inlineSources": true,
 "noFallthroughCasesInSwitch": true,
 "noUnusedLocals": true,
 "noUnusedParameters": true,
 "strict": true,
 "removeComments": true,
 "pretty": true,
 "strictPropertyInitialization": true,
 "lib": ["esnext"]
 },
 "include": [
 "./**/*.ts"
 ],
 "exclude": [
 "node_modules"
 ]
}

執行 npm install

刪除項目下 typings 目錄, 的 復制 node_modules 下 miniprogram-api-typings 的 types 文件到項目根目錄

在 miniprogram 下創建 interface 目錄并創建 IAppOption.ts 文件,最后編輯 app.ts 文件,

// IAppOption.ts
export default interface IAppOption {
 globalData: {
  text: string;
 }
}
// app.ts
import IAppOption from "./interface/IAppOption";

App<IAppOption>({
 globalData: {
  text: "Hello,Word!"
 },
 onLaunch() {
 }
})

在 詳細 -> 本地設置 -> 調試基礎庫,直接選擇最新的

使用 Promise 化的微信小程序api

以前可以通過 miniprogram-api-promise 這個包來完成 api Promise 化,或者自己寫

現在可以直接使用,比如 wx.getStorageInfo ,在 lib.wx.api.d.ts 中返回了 PromisifySuccessResult

PromisifySuccessResult 返回了Promise

getStorageInfo<TOption extends GetStorageInfoOption>(
option?: TOption
): PromisifySuccessResult<TOption, GetStorageInfoOption>

type PromisifySuccessResult<
P,
 T extends AsyncMethodOptionLike
> = P extends { success: any }
 ? void
 : P extends { fail: any }
 ? void
 : P extends { complete: any }
 ? void
 : Promise<Parameters<Exclude<T['success'], undefined>>[0]>

兩種用法,大多數api都支持

 wx.getStorageInfo({
 success: () => {
  console.log('成功執行')
 },
 fail: () => {
  console.log('失敗執行')
 },
 complete: () => {
  console.log('接口調用結束')
 }
})
wx.getStorageInfo().then(() => {
 console.log('成功執行')
}).catch(() => {
 console.log('失敗執行')
}).finally(() => {
 console.log('接口調用結束')
})

關于如何使用typescript編寫一個微信小程序項目問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

津南区| 瑞安市| 仁怀市| 黑龙江省| 台山市| 西昌市| 辽中县| 阜新| 兴宁市| 和顺县| 安义县| 马龙县| 刚察县| 汾西县| 辽宁省| 汤阴县| 新邵县| 高碑店市| 西平县| 儋州市| 龙陵县| 双流县| 安阳县| 沂南县| 大洼县| 顺义区| 囊谦县| 五华县| 临沭县| 承德县| 台江县| 抚州市| 喀什市| 沭阳县| 留坝县| 洪泽县| 甘泉县| 兰西县| 南阳市| 巴南区| 富宁县|