gpt4 book ai didi

javascript - Node.js Javascript 和 Express

转载 作者:行者123 更新时间:2023-11-30 10:03:54 27 4
gpt4 key购买 nike

我试图通过将字符串分成两部分来操纵它。

我的 js

var request = require('request');
var cheerio = require('cheerio');

var href1,href;
var str = "https://google.co.in/search?q=okay"+"+google";

request(str, function (error, response, html) {
if (!error && response.statusCode == 200) {
var $ = cheerio.load(html);
var a = $('.r a');
href = a.attr('href');
href1="https://google.co.in"+href;
var href


console.log(href1);

request(href1, function (error, response, html){

if (!error && response.statusCode == 200) {
var $ = cheerio.load(html);
var a1 = $('ol li a');
var href2 = a1.attr('href');
var href3 = href2.indexOf("/48");
var href4=href3.substring(0,20);

console.log(href4);

}
});
}
});

它在我使用子字符串函数的那一行给出了一个类型错误:

Undefined is not a function.

但是,href3 返回一个整数,这没问题。所以,我知道 href3 不是空的或未定义的。

我该如何解决?

最佳答案

您正在尝试从数字调用字符串函数。 Href3 将没有 substring 函数,因为 indexOf 返回一个数字。

行:

var href4=href3.substring(0,20);

应该是:

 var href4=href2.substring(0,20);

关于javascript - Node.js Javascript 和 Express,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30285528/

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