笑话,酵素:不断违反:您不应该使用< Route>或在< Router>外部使用Router()

编程入门 行业动态 更新时间:2024-10-26 16:26:59
本文介绍了笑话,酵素:不断违反:您不应该使用< Route>或在< Router>外部使用Router()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个<UserListComponent />,它输出一个<Contact />组件和<Contacts />表示的联系人列表.

I have a <UserListComponent /> which outputs one <Contact /> component and list of contacts presentated by <Contacts />.

问题在于,在尝试安装<UserListComponent />的测试中,测试输出错误Invariant Violation: You should not use <Route> or withRouter() outside a <Router>

The problem is that in the test for <UserListComponent /> when I try to mount it, test outputs an error Invariant Violation: You should not use <Route> or withRouter() outside a <Router>

withRouter()用于<Contacts />组件.

在父组件测试中如何在没有路由器的情况下模拟ContactsComponent?

How can I mock ContactsComponent without router in test of parent component?

我发现了一些类似的问题 www.bountysource/issues/49297944-invariant-violation-you-should-not-use-route-or-withrouter-outside-a-router 但是它仅描述组件被withRouter()本身而不是子对象覆盖的情况.

I found some similar issue www.bountysource/issues/49297944-invariant-violation-you-should-not-use-route-or-withrouter-outside-a-router but it only describes situation when component is cover by withRouter() itself, not children.

UserList.test.jsx

const mockResp = { count: 2, items: [ { _id: 1, name: 'User1', email: 'email1@gmail', phone: '+123456', online: false }, { _id: 2, name: 'User2', email: 'email2@gmail', phone: '+789123', online: false }, { _id: 3, name: 'User3', email: 'email3@gmail', phone: '+258369147', online: false } ], next: null } describe('UserList', () => { beforeEach(() => { fetch.resetMocks() }); test('should output list of users', () => { fetch.mockResponseOnce(JSON.stringify(mockResp)); const wrapper = mount(<UserListComponent user={mockResp.items[2]} />); expect(wrapper.find('.contact_small')).to.have.length(3); }); })

UserList.jsx

export class UserListComponent extends PureComponent { render() { const { users, error } = this.state; return ( <React.Fragment> <Contact userName={this.props.user.name} content={this.props.user.phone} /> {error ? <p>{error.message}</p> : <Contacts type="contactList" user={this.props.user} contacts={users} />} </React.Fragment> ); } }

Contacts.jsx

class ContactsComponent extends Component { constructor() { super(); this.state = { error: null, }; } render() { return ( <React.Fragment> <SectionTitle title="Contacts" /> <div className="contacts"> //contacts </div> </React.Fragment> ); } } export const Contacts = withRouter(ContactsComponent);

推荐答案

要测试包含<Route>和withRouter的组件(使用Jest),您需要在测试中而不是组件中导入Router

To test a component (with Jest) that contains <Route> and withRouter you need to import Router in you test, not in your component

import { BrowserRouter as Router } from 'react-router-dom';

并像这样使用它

app = shallow( <Router> <App /> </Router>);

更多推荐

笑话,酵素:不断违反:您不应该使用&lt; Route&gt;或在&lt; Router&gt;外部使用Router()

本文发布于:2023-08-03 08:04:22,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1285467.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:酵素   您不   笑话   amp   Router

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!