在官方示例中使用 useState 时出错 [英] Error when using useState in official example

查看:42
本文介绍了在官方示例中使用 useState 时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此代码来自

解决方案

您必须重新启动 Web 服务器才能使用新版本的 React 重新编译.嗯.

This code came from here.

import React from 'react';
import useState from 'react'

let f = function() {

  const [count, setCount] = useState(0);

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}

export default f;

Firstly, this line from that page...

import React, { useState } from 'react';

... results in useState being null, but I changed that line. Anyhow, I get the following error...

TypeError: react__WEBPACK_IMPORTED_MODULE_1___default(...) is not a function

This error goes way if I change the code to this...

const [count, setCount] = [1, () => {}]

So I figure useState is the problem - it's not a function. Perhaps my custom import is not doing the correct thing. In which case, why doesn't the official import work?

I'm using React 16.8.1. My packages file has these...

"react-dom": "16.8.1",
"react": "16.8.1",

I've delete the local node_modules folder and run npm install --force -g.

Console.log on useState gives...

解决方案

You have to restart the web server to recompile with a new version of React. Doh.

这篇关于在官方示例中使用 useState 时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆