1. 程式人生 > >node fs 解決回調地域問題

node fs 解決回調地域問題

const () node 解決 cti cat 地域 bsp nbsp

promisify問題

promisify = require(‘util).promisify

const read = promisify( fs.readFile);

read(‘input.txt‘).then(data=>{

}).catch(err=>{

})

async function test(){

try{

const res = await read(‘input.txt‘)

}catch(ex){

console.log(ex)

}

}

node fs 解決回調地域問題