最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

TypeScript又出新關鍵字了?

2023-06-28 07:02 作者:吳小敏63  | 我要投稿

TypeScript 5.2將引入一個新的關鍵字:using。當它離開作用域時,你可以用Symbol.dispose函數(shù)來處置任何東西。

{ ?const getResource = () => { ? ?return { ? ? ?[Symbol.dispose]: () => { ? ? ? ?console.log('Hooray!') ? ? ?} ? ?} ?} ?using resource = getResource(); } // 'Hooray!' logged to console

這是基于TC39提議,該提議最近達到了第三階段,表明它即將進入JavaScript。

using將對管理文件句柄、數(shù)據(jù)庫連接等資源非常有用。

Symbol.dispose

Symbol.dispose是JavaScript中一個新的全局symbol。任何具有分配給Symbol.dispose函數(shù)的東西都將被視為"資源":也就是具有特定生命周期的對象。并且該資源可以使用using關鍵字。

const resource = { ?[Symbol.dispose]: () => { ? ?console.log("Hooray!"); ?}, };

await using

你也可以使用Symbol.asyncDisposeawait來處理那些需要異步處置的資源。

const getResource = () => ({ ?[Symbol.asyncDispose]: async () => { ? ?await someAsyncFunc(); ?}, }); { ?await using resource = getResource(); }

這將在繼續(xù)之前等待Symbol.asyncDispose函數(shù)。

這對數(shù)據(jù)庫連接等資源來說很有用,你要確保在程序繼續(xù)前關閉連接。

使用案例

文件句柄

通過節(jié)點中的文件處理程序訪問文件系統(tǒng),使用using可能會容易得多。

不使用using

import { open } from "node:fs/promises";let filehandle;try { ?filehandle = await open("thefile.txt", "r"); } finally { ?await filehandle?.close(); }

使用using

import { open } from "node:fs/promises";const getFileHandle = async (path: string) => { ?const filehandle = await open(path, "r"); ?return { ? ?filehandle, ? ?[Symbol.asyncDispose]: async () => { ? ? ?await filehandle.close(); ? ?}, ?}; }; { ?await using file = getFileHandle("thefile.txt"); ?// Do stuff with file.filehandle} // Automatically disposed!

數(shù)據(jù)庫連接

管理數(shù)據(jù)庫連接是在C#中使用using的一個常見用例。

不使用using

const connection = await getDb();try { ?// Do stuff with connection} finally { ?await connection.close(); }

使用using

const getConnection = async () => { ?const connection = await getDb(); ?return { ? ?connection, ? ?[Symbol.asyncDispose]: async () => { ? ? ?await connection.close(); ? ?}, ?}; }; { ?await using { connection } = getConnection(); ?// Do stuff with connection} // Automatically closed!

圖片示例

下圖是上面示例的圖片版本:

總結(jié)

本文簡要介紹了TypeScript5.2中引入的新關鍵字using,它的出現(xiàn)可以很好的和Symbol.dispose搭配使用。有了它我們便不需要在try…catch語句中進行數(shù)據(jù)庫的關閉,這對管理文件句柄、數(shù)據(jù)庫連接等資源時非常有用。


TypeScript又出新關鍵字了?的評論 (共 條)

分享到微博請遵守國家法律
新野县| 达孜县| 南木林县| 饶平县| 长岛县| 子长县| 尼勒克县| 宁波市| 吴江市| 进贤县| 漯河市| 绥化市| 闵行区| 邵武市| 长乐市| 诏安县| 宣恩县| 新沂市| 延吉市| 民和| 凉山| 横山县| 左贡县| 普兰县| 罗江县| 惠州市| 财经| 正宁县| 古蔺县| 措勤县| 久治县| 昆明市| 黑水县| 泰安市| 襄城县| 新蔡县| 永胜县| 玉环县| 昭苏县| 陆丰市| 蓬溪县|