0

我正在尝试测试深层链接的配置,在世博会文档中我找到了下一行 Development in Expo Go: exp://127.0.0.1:19000/--/path/into/app?hello=world,但是一旦我尝试运行npx uri-scheme open exp://127.0.0.1:19000/--/path/into/app?hello=world --ios我就会遇到错误no matches found: exp://127.0.0.1:19000/--/path/into/app?hello=world,只要我删除查询字符串就可以了。有什么想法我做错了吗?在官方文档中没有找到任何答案。

4

1 回答 1

1

我发现转义?字符解决了这个问题。

# Add `\` before `?`
# Replace `127.0.0.1:19000` with your host.

npx uri-scheme open exp://127.0.0.1:19000/--/path/into/app\?hello=world --ios

这仅适用于 iOS 模拟器。Expo Go 应用程序不走运。

于 2021-08-12T12:55:22.540 回答