#reactjs #fluent-ui #fluentui-react
#reactjs #fluent-пользовательский интерфейс #fluentui-реагировать
Вопрос:
Я начал изучать React и FluentUI 2 часа назад. Я пробую различные учебные пособия, доступные через Интернет, но не могу просто пройти этап установки пакета FluentUI. Я получаю следующую ошибку:
npm i @fluentui/react
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: fluent-ui-todo-app@0.1.0
npm ERR! Found: react@17.0.1
npm ERR! node_modules/react
npm ERR! react@"^17.0.1" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@">=16.8.0 <17.0.0" from @fluentui/react@7.153.4
npm ERR! node_modules/@fluentui/react
npm ERR! @fluentui/react@"*" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See ------AppDataLocalnpm-cacheeresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! ------Localnpm-cache_logs2020-12-10T12_41_32_759Z-debug.log
Я попытался удалить react и установить react@16.14.0 , но это не помогает, потому что есть другие пакеты, которые зависят от react@17.0.1 . Что я могу сделать?
npm install react@16.14.0
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: react@16.14.0
npm ERR! node_modules/react
npm ERR! react@"16.14.0" from the root project
npm ERR! peer react@"*" from @testing-library/react@11.2.2
npm ERR! node_modules/@testing-library/react
npm ERR! @testing-library/react@"^11.2.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"17.0.1" from react-dom@17.0.1
npm ERR! node_modules/react-dom
npm ERR! peer react-dom@"*" from @testing-library/react@11.2.2
npm ERR! node_modules/@testing-library/react
npm ERR! @testing-library/react@"^11.2.2" from the root project
npm ERR! react-dom@"^17.0.1" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
Ответ №1:
У меня была такая же проблема при попытке установить пакет fluentui, и после некоторого цикла проб / ошибок я обнаружил, что он работает для меня с версией react 16.8, и мне пришлось изменить следующие пакеты:
"@types/react": "16.8",
"@types/react-dom": "16.8",
"react": "16.8",
"react-dom": "16.8"
Надеюсь, это поможет, приветствия 😉
Ответ №2:
Microsoft Fluent-одноранговые зависимости пользовательского интерфейса не поддерживают React версии 18. Вам нужно дождаться выпуска пакета или понизить версию вашего приложения до версии 16. Измените свой package.json.
"@types/react": "16.8",
"@types/react-dom": "16.8",
"react": "16.8",
"react-dom": "16.8"