Skip to content

请问如何提取IEEE Current Issue网页中的完整abstract? #8571

Answered by auto-bot-ty
Derekmini asked this question in Q&A
Discussion options

You must be logged in to vote
const got = require('got');
(async() => {
    const response = await got('https://ieeexplore.ieee.org/document/1303684');
    const content = response.body.match(/metadata=(.*);/)[1]
    const {abstract} =JSON.parse(content)
    console.log(abstract)
})()

Replies: 3 comments 5 replies

Comment options

You must be logged in to vote
1 reply
@Derekmini
Comment options

Comment options

You must be logged in to vote
2 replies
@Derekmini
Comment options

@Derekmini
Comment options

Answer selected by Derekmini
Comment options

You must be logged in to vote
2 replies
@Derekmini
Comment options

@Derekmini
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants