react ProvidePlugin - Search for the keywords to learn more about each error.

Search for the keywords to learn more about each error.

ProvidePlugin传送门
场景: 在react中配置jquery全局变量,webpack官网是这么说的,直接写上插件配置,就可以直接使用。照着官网对webpack.config.js进行文件配置:
webpack.config.js


plugins: [
    ...
    new webpack.ProvidePlugin({
        $: 'jquery',
    }),
    ...
]

home.js


import React, { Component } from "react";
import './home.scss'

class Home extends Component {
    componentDidMount(){
        $('.sh').scrollTop(200)
    }
}

export default Home 

在这里插入图片描述
运行报错了 =_= 百思不得解???。。官网就是这么说的。。。。
去搜了 react ProvidePlugin 。。
结果是eslint检测报错。由于一些无状态组件没有显式的调用react。在需要使用的文件夹上面禁掉eslint:

/* eslint-disable */  //整个下面块不检查
// eslint-disable-next-line  下一行不检查
import React, {Component} from 'react';  // eslint-disable-line   本行不检查

好了,现在在文件上加上/* eslint-disable */

/* eslint-disable */
import React, { Component } from "react";
import './home.scss'
...

嗯。。完美~

参考文章:https://segmentfault.com/a/1190000011451121

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值