码迷,mamicode.com
首页 > 其他好文 > 详细

promise 获取文件内容

时间:2019-12-06 13:20:01      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:sed   res   文件结构   gif   The   UNC   function   src   ring   

文件结构图

技术图片

技术图片
{
    "next":"b.json",
     "msg":"this is a"
}
a.json
技术图片
{
    "next":"c.json",
     "msg":"this is b"
}
b.json
技术图片
{
    "next":"null",
     "msg":"this is c"
}
c.json

 

上一层

const fs=require(fs)
const path=require(path)


//用jpromise获取文件内容

function getFileContent(filName){

      const  promise= new Promise((resolve, reject)=>{
         
        const fullFileName=path.resolve(__dirname,files,filName)

         fs.readFile(fullFileName,(err,data)=>{

              if(err){
                  reject(err)
                  return
              }
              resolve(
                  JSON.parse(data.toString())
                  )
         })
            
      })
      return promise
}

getFileContent(a.json).then(aData=>{
     console.log("a data", aData)
     return getFileContent(aData.next)
}).then(bData=>{
    console.log("b data", bData)
    return getFileContent(bData.next)
}).then(cData=>{
    console.log("c data", cData)
})

 

promise 获取文件内容

标签:sed   res   文件结构   gif   The   UNC   function   src   ring   

原文地址:https://www.cnblogs.com/hack-ing/p/11994412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!