try catch

作者: peng凯 | 来源:发表于2018-01-09 13:36 被阅读3次

    var fs=require("fs")

    try {

            fs.readFile("./sdas.js","utf8",function(error){

                console.log("2"+error)

        })

    } catch (error) {

    }

    上面是异步的   trycatch不能捕获

    下面是同步的   trycatch只能捕获同步的

    try {

        fs.readdirSync("./sdd.js","utf8")

    } catch (error) {

        console.log("1"+error)

    }

    相关文章

      网友评论

          本文标题:try catch

          本文链接:https://www.haomeiwen.com/subject/lniwnxtx.html