使用Babel仅转换jsx

时间:2018-03-02 03:15:38

标签: javascript reactjs jsx babel

我正在使用Babel和React js。 问题是我不想将es6转换为es5。我想继续使用es6。 我只需要将jsx转换为js。 这是我的.babelrc

{
  "plugins": ["transform-react-jsx"]
}

这是我的代码:

import React from "react";

/****** Header *******/
export class Header extends React.Component {
    onSubmit = (e) => {
        e.preventDefault();
        console.log('Submitting');
        const errors = this.validate();

        if (Object.keys(errors).length === 0) {
            this.setState({ loading: true });
            fetch(this.props.action, {
                method: 'POST',
                body: JSON.stringify(this.state.data),
                headers: new Headers({
                    'Content-Type': 'application/json'
                }),
                credentials: 'same-origin'
            }).then(res => res.json())
                .catch(error => console.error('Error:', error))
                .then(response => console.log('Success:', response));
        }
    };

    render() {
        return (
            <div>
                <a href={this.props.homeUrl}><img src={this.props.logoUrl} /></a>
                <div><span>Hello {this.props.userName}</span></div>
                <button onclick={this.onSubmit(e).bind(this)}>Click me</button>
            </div>
        );
    }
}

这是我在运行“babel components / Header.js -o Header.babel.js”时所看到的。

SyntaxError: components/Header.js: Unexpected token (5:13)
  3 | /****** Header *******/
  4 | export class Header extends React.Component {
> 5 |     onSubmit = (e) => {
    |              ^
  6 |         e.preventDefault();
  7 |         console.log('Submitting');
  8 |         const errors = this.validate();

它向我展示了es6代码行的语法错误所以我认为Babel仍然需要将es6转换为es5

安装“transform-class-properties”后,它会显示另一条错误消息:

SyntaxError: components/Form.js: Unexpected token (55:12)
  53 |     getFieldValue(e) {
  54 |         this.setState({
> 55 |             ...this.state,
     |             ^
  56 |             data: {
  57 |                 ...this.state.data,
  58 |                 [e.target.name]: e.target.value

你知道有没有办法做到这一点?只将JSX转换为JS

非常感谢您的支持

2 个答案:

答案 0 :(得分:0)

如果该浏览器不支持所有es6功能或某些浏览器,则取决于您使用的浏览器,那么这些错误是令人担忧的

答案 1 :(得分:0)

您正在使用类属性语法,例如someVar = () => {}

jsx插件不会改变它。您需要为所有仍为提案的高级功能添加插件。

以下是类属性的babel插件:https://babeljs.io/docs/plugins/transform-class-properties/

基本上,它只会转换你提供的插件,但是浏览器不支持类属性,更不用说节点了。