eslint / eslint-plugin-react: – no-script-url error

前端之家收集整理的这篇文章主要介绍了eslint / eslint-plugin-react: – no-script-url error前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表单组件:

< form action=”javascript:void(0)” onSubmit={this.join}>

Eslint抱怨道:

error Script URL is a form of eval no-script-url

注意:我也在使用“eslint-plugin-react”

我怎样才能放松这条规则或者什么是javascript void函数的替代方案?

我遇到了这个问题,然后在Redux官方文档中看到了这种模式,这对我来说很有意义:
<a
  href=""
  onClick={e => {
    e.preventDefault()
    onClick()
  }}
>
  {children}
</a>

Source

这就是我现在要做的事情.

原文链接:https://www.f2er.com/react/301083.html

猜你在找的React相关文章