最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to allow async functions in React + Babel? - Stack Overflow

programmeradmin3浏览0评论

I have a Typescript/React app, that can perform async function with a then/catch promise, but not with async/await/try/catch.

The error is: Uncaught ReferenceError: regeneratorRuntime is not defined .

The error seems to e from Babel. Here is my config:

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-typescript",
    "@babel/preset-react"
  ],
  "plugins": ["babel-plugin-styled-ponents"]
}

I have a Typescript/React app, that can perform async function with a then/catch promise, but not with async/await/try/catch.

The error is: Uncaught ReferenceError: regeneratorRuntime is not defined .

The error seems to e from Babel. Here is my config:

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-typescript",
    "@babel/preset-react"
  ],
  "plugins": ["babel-plugin-styled-ponents"]
}

How to fix this?

Share Improve this question asked Apr 19, 2020 at 12:12 DoneDeal0DoneDeal0 6,29718 gold badges77 silver badges132 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

You can find your solution at here

If I summarise then you have to install a babel plugin named plugin-transform-runtime and need to configure the .babelrc settings.

npm install @babel/plugin-transform-runtime --save-dev
npm install @babel/runtime

After installing these two go to the .babelrc file and add these plugins.

"plugins": [
    ["@babel/plugin-transform-runtime",
      {
        "regenerator": true
      }
    ]
  ],

for babel 7

All necessary packages are included in "@babel/preset-env"

{
    "presets": [
        [
            "@babel/preset-env",
            {
                "targets": {
                    "node": "10.0.0"
                }
            }
        ],
        "@babel/preset-react"
    ]
}

Super Basic example

import React from "react";

const Board = () => {

    const [resp_post, setResp_post] = React.useState(0);

    (async function getData() {
        setResp_post(await Promise.resolve(30));
    })();
    
    return <h1>Board {resp_post} {value}</h1>;
};

export default Board;

preset-env documentation

preset-reactlink documentation

发布评论

评论列表(0)

  1. 暂无评论