1

为什么这段代码不起作用?我明白了

TypeError: $ is not a function

测试.js

'use strict';

var Promise = require('bluebird');
var request = require('request-promise');
var cheerio = require('cheerio');

module.exports = {
    get: function () {

        return new Promise(function (resolve, reject) {
            var options = {
                uri: 'https://www.example.com',
                transorm: function (body) {
                    return cheerio.load(body);
                }
            };

            request(options)
                .then(function ($) {
                    // Error happens here
                    $('#mydivid').text();
                    resolve();
                })
                .catch(function (error) {
                    console.log(error);
                    reject(error);
                });
        });
    }
}
4

1 回答 1

1

我又看了看,我发现了问题。你的options对象如下:

 var options = {
                uri: 'https://www.example.com',
                transorm: function (body) {
                    return cheerio.load(body);
                }
 };

您使用transorm而不是transform. 因此它返回的 html 内容字符串而不是cheerio.load(body). 将其更改为transform它会工作。

 var options = {
                uri: 'https://www.example.com',
                transform: function (body) {
                    return cheerio.load(body);
                }
 };
于 2017-12-12T18:45:47.157 回答