为了账号安全,请及时绑定邮箱和手机立即绑定

React Component 上的 Typescript 错误:

React Component 上的 Typescript 错误:

临摹微笑 2022-12-22 14:38:58
我不确定为什么它在这里抱怨TBH,这个错误让我感到困惑。createLinkSetsForCountryfunction createLinkSetsForCountry(country: Country, companies: Array<Company>) {    let companyLinks: Array<LinkItem> = [];    const companyLinkSets = [];    for (const company of companies) {        companyLinks.push(<LinkItem company={company} key={company.id} />);        companyLinkSets.push(            <LinkSet                className="ft-link-set"                country={country}                key={company.id}                links={companyLinks} />        );        companyLinks = [];    }    return (        <div>            <ListHeader country={country} />            <div>{companyLinkSets}</div>        </div>    );}链接项export class LinkItem extends Component<{ company: Company, key: number }> {    render() {        const { company } = this.props,            hasApp = (company.interview                && company.interview.app                && company.interview.app.hasAppp),            uri = company.notInterviewed ? `companies/${company.id}/details` : `/interviews/companies/${company.id}`,            className = `margin-top-10 margin-bottom-10 ${                company.notInterviewed ? 'ft-company-not-interviewed' : ''            }`;        const link = (            <Link className={className} id={company.id.toString()} to={uri}>                <span id="company-name">{company.name}</span>            </Link>        );  
查看完整描述

1 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

基本上,您companyLinks的列表是 React 元素而不是LinkItem,因此只需按以下方式进行更改即可:

let companyLinks: Array<React.ReactElement> = [];


查看完整回答
反对 回复 2022-12-22
  • 1 回答
  • 0 关注
  • 47 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信