Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

はてなjs教科書 promiseのコードの問題 #32

Open
voidsatisfaction opened this issue Feb 1, 2018 · 0 comments
Open

はてなjs教科書 promiseのコードの問題 #32

voidsatisfaction opened this issue Feb 1, 2018 · 0 comments

Comments

@voidsatisfaction
Copy link
Contributor

voidsatisfaction commented Feb 1, 2018

WHY?

https://github.com/hatena/Hatena-Textbook-JavaScript/blob/master/async/promise.md

上のリンクでは、次のようなpromiseコードが書いています。

let db;
MongoClient.connect('mongodb://localhost:27017/rssDataBase')
    .then((_db) => {
        db = _db;
        return fs.readFile('./feed.xml', 'utf8');
    })
    .then(rssString => parseString(rssString))
    .then((result) => {
        const items = result.rss.channel[0].item;
        return Promise.all(items.map(item => request(item.link[0])));
    })
    .then((responses) => {
        return responses.map((res) => {
            return {
                url  : res.request.href,
                body : res.body,
            };
        });
    })
    .then((data) => {
        return db.collection('entries').insertMany(data);
    })
    .then(() => {
        db.close();
    });

ここで、fs.readFile('./feed.xml', 'utf8')をreturnしていますが、これは、「https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback」 の仕様によると、callback関数を第3引数としてもらっていますし、promiseを使ってラップされてないので、実装に混同する余地があり、コードを修正する必要があると思います。

parseStringという関数も同様です。

HOW?

プロミスでラップした正確なコードを書く

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant