-
Notifications
You must be signed in to change notification settings - Fork 7.7k
请问如何提取IEEE Current Issue
网页中的完整abstract?
#8571
Replies: 3 comments · 5 replies
-
|
Beta Was this translation helpful? Give feedback.
All reactions
-
感谢您的回答,但是我仍旧无法获得。 可能这是您分析的内容您是在网页中获取到元素的 无法
|
Beta Was this translation helpful? Give feedback.
All reactions
-
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)
})() |
Beta Was this translation helpful? Give feedback.
All reactions
-
感谢,非常有效!再次感谢您的帮助! |
Beta Was this translation helpful? Give feedback.
All reactions
-
感谢您的帮助,路由已经写好,待之前pr合并后,会提交该路由。 在此以及说明文档中声明您的帮助!感谢感谢! '/:journal/latest/date/:sortType?': ['Derekmini','auto-bot-ty'],
'/:journal/latest/vol/:sortType?': ['Derekmini','auto-bot-ty'], |
Beta Was this translation helpful? Give feedback.
All reactions
-
分支开发,可以提交多个PR
…---原始邮件---
发件人: ***@***.***>
发送时间: 2021年11月23日(周二) 晚上9:08
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [DIYgod/RSSHub] 请问如何提取IEEE `Current Issue`网页中的完整abstract? (Discussion #8571)
感谢您的帮助,路由已经写好,待之前pr合并后,会提交该路由。
在此以及说明文档中声明您的帮助!感谢感谢!
'/:journal/latest/date/:sortType?': ['Derekmini','auto-bot-ty'], '/:journal/latest/vol/:sortType?': ['Derekmini','auto-bot-ty'],
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
All reactions
-
对哈!OK,因为用到了html,我添加好art模板就去提交。谢谢提醒! |
Beta Was this translation helpful? Give feedback.
All reactions
-
目前已经提交所有pr,为了表达谢意,已将您添加到作者列表,再次感谢! |
Beta Was this translation helpful? Give feedback.
-
您好,我想请教获取Transactions on Robotics and Automation网页中条目完整
abstract
的方法。描述问题
获取条目的网页为Transactions on Robotics and Automation,已利用如下语句获取每篇文章的信息( 如
title
,link
,doi
,author
,abstract
)。出现问题的地方在:
abstract
中的内容不完整,只会显示特定长度的字符,最后会以...
结尾,如下图所示:已尝试的方法,但未实现最终效果
计划遍历每篇文章内容,从中提取完整abstract
之后,计划使用
get
方式访问单篇文章,从中提取完整的abstract
,但是发现,完整的abstract
内容在HTML
的header
中的第3个和第4个meta
中,我使用以下代码可以获得返回的HTML
,但却定位不到那个meta
,请问const abstract = $("meta");
应该如何修改?get
单篇文章Fuzzy supervisory control of manufacturing systems的代码如下:最后
虽然接触的时间比较长了,但没有系统地学习过这方面的知识,所以还希望您能给一些提示,能帮我打开一下思路,谢谢您的帮助!
Beta Was this translation helpful? Give feedback.
All reactions