gpt4 book ai didi

reactjs - 当前未启用对实验性语法 'decorators-legacy' 的支持

转载 作者:行者123 更新时间:2023-12-03 14:56:37 24 4
gpt4 key购买 nike

当我使用 mobx-react 和尝试使用 annotations 时,我收到了上述错误。这里我使用的是 .js 而不是 .ts。之前提供的所有解决方案对我来说都不成功。

import React, { Component } from 'react';
import { withRouter, Redirect } from 'react-router-dom';
import { observable, action } from 'mobx';
import { inject, observer } from 'mobx-react';

@inject('authStore')
@withRouter
@observer
class Login extends Component {

componentWillUnmount() {
this.props.authStore.reset();
}

}

我的错误是
enter image description here

最佳答案

如果你正在使用 babel 那么你需要安装和使用 @babel/plugin-proposal-decoratorslegacy模式启用。
例如,.babelrc 的插件部分:

    "plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }]
]

关于reactjs - 当前未启用对实验性语法 'decorators-legacy' 的支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53440663/

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