We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
相关代码: BridgeWebViewClient
当页面打开如下链接时候:
alipays://platformapi/startApp?appId=20000125&orderSuffix=h5_route_token%3d%22RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13%22%26is_h5_route%3d%22true%22
此时query参数为:
appId = 20000125 orderSuffix = h5_route_token%3d%22RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13%22%26is_h5_route%3d%22true%22
容器拦截并直接deocde得到:
alipays://platformapi/startApp?appId=20000125&orderSuffix=h5_route_token="RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13"&is_h5_route="true"
此时query参数变成:
appId = 20000125 orderSuffix = h5_route_token="RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13" is_h5_route = true
发生参数异常
The text was updated successfully, but these errors were encountered:
相关代码: BridgeWebViewClient 当页面打开如下链接时候: alipays://platformapi/startApp?appId=20000125&orderSuffix=h5_route_token%3d%22RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13%22%26is_h5_route%3d%22true%22 此时query参数为: appId = 20000125 orderSuffix = h5_route_token%3d%22RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13%22%26is_h5_route%3d%22true%22 容器拦截并直接deocde得到: alipays://platformapi/startApp?appId=20000125&orderSuffix=h5_route_token="RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13"&is_h5_route="true" 此时query参数变成: appId = 20000125 orderSuffix = h5_route_token="RZ13gRJLQjVvGhfoBvMptJq4tz8Q2imobilecashierRZ13" is_h5_route = true 发生参数异常
解决办法:
Sorry, something went wrong.
No branches or pull requests
相关代码: BridgeWebViewClient
当页面打开如下链接时候:
此时query参数为:
容器拦截并直接deocde得到:
此时query参数变成:
发生参数异常
The text was updated successfully, but these errors were encountered: