KangXinzhi

Results 5 issues of KangXinzhi

![image](https://user-images.githubusercontent.com/50164727/190093975-55fda4fe-335e-457e-aa23-3f0ec926239b.png)

![image](https://github.com/fisshy/react-scroll/assets/50164727/2847bbe9-3a4f-4699-bd7d-3c247a2c5d49) ![image](https://github.com/fisshy/react-scroll/assets/50164727/bcb4aa31-af73-40b8-97d4-b0353c984b75)

### 相关平台 微信小程序 **小程序基础库: 3.4.3** **使用框架: React** ### 复现步骤 使用最新版本的taro脚手架生成项目。 使用默认模版配置页面 如果参数中不包含%正常 如果参数中包含%直接白屏报错 ### 环境信息 ``` 👽 Taro v3.6.29 Taro CLI 3.6.29 environment info: System: OS: macOS 13.5.2 Shell: 5.9...

V-3
F-react
T-weapp

### 相关平台 微信小程序 **小程序基础库: 3.0.2** **使用框架: React** ### 复现步骤 - 网址参数中只有中文,符合预期。例如:```www.baidu.com?word=你好```使用taro的CurrentPages方法或useRouter获取query参数时,中文会被自动encode。获取到的word参数为```%E4%BD%A0%E5%A5%BD```。 - 网址参数中有中文加特殊字符,不符合预期,例如:```www.baidu.com?word=你%好```,获取到的word参数为```%E4%BD%A0%%E5%A5%BD```,中文会被自动encode而特殊字符没被encode。导致用户无法正常decode。 ### 期望结果 期望%特殊字符被正常encode。```www.baidu.com?word=你%好``` 期望的word参数为```%E4%BD%A0%25%E5%A5%BD``` ![image](https://github.com/NervJS/taro/assets/50164727/71208d00-9b71-4962-9b3e-95a28e7a2ccb) ### 实际结果 使用CurrentPages或useRouter实际获取到word参数为 ```%E4%BD%A0%%E5%A5%BD```用户无法正常decode ![image](https://github.com/NervJS/taro/assets/50164727/337ffeef-2dce-421a-9407-924c4efdb1af) ### 环境信息 ``` Taro v3.6.28 Taro CLI...

V-3
F-react
T-weapp

module.exports = { // Root directory root: "./src", // Directories that do not need to be analyzed ignore: ["**/node_modules/**", "**/dist/**"], // Order of preference when parsing files without extensions //...