gpt4 book ai didi

node.js - Meteor 包中的 HTTP 请求?

转载 作者:可可西里 更新时间:2023-11-01 16:36:57 24 4
gpt4 key购买 nike

我正在尝试使用 http meteor 数据包从某个网页中提取元信息,以提取此信息。如何使用 HTTP meteor 包获取网页中的 meta 关键字和描述?

最佳答案

例子:

HTTP.call('GET', 'http://example.com', function(err, res){
if(res.statusCode === 200 && res.content){
var metaKeywords = /name="keywords" content="(.*)"/gim.exec(res.content)[1];
var metaDescription = /name="description" content="(.*)"/gim.exec(res.content)[1];
}
});

您可能需要使用正则表达式。

关于node.js - Meteor 包中的 HTTP 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34852656/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com