Property 'params' does not exist on type 'Router'.
时间: 2024-01-08 14:02:05 浏览: 196
回答: 问题中提到的错误是"Property 'params' does not exist on type 'Router'"。这个错误的原因是在类型为'Router'的对象上找不到'params'属性。要解决这个问题,可以尝试以下方法:首先,确保你的对象类型是正确的,如果你使用的是React Router库,你应该使用'RouteComponentProps'类型来定义你的props对象。其次,你可以尝试将props.location赋值给一个类型为any的常量,然后使用该常量来获取参数。例如,你可以使用以下代码来获取参数:const a = props.location as any; console.log("param1 :",a.param1)。这样做可以避免类型检查错误。\[1\]\[2\]\[3\]
#### 引用[.reference_title]
- *1* *2* *3* [React 传参 报错does not exist on type ‘Location‘. TS2339和‘PropsWithChildren‘. TS2339](https://blog.csdn.net/violin256/article/details/109285243)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文