Write objects into file with Node.js

后端 未结 6 1652
滥情空心
滥情空心 2020-12-02 10:53

I\'ve searched all over stackoverflow / google for this, but can\'t seem to figure it out.

I\'m scraping social media links of a given URL page, and the function re

6条回答
  •  有刺的猬
    2020-12-02 11:26

    If you're geting [object object] then use JSON.stringify

    fs.writeFile('./data.json', JSON.stringify(obj) , 'utf-8');

    It worked for me.

提交回复
热议问题