我正在PC上构建REST服务。当我发送请求url时,浏览器(我正在使用chrome)将所有'/'转换为%5C。在某些情况下,它可以正常工作。但是大多数情况下url都已更改。 错误:网址:http://localhost:3028/controller/addFile?file=C:/Users/Acer/Desktop/Dhana/d/s.txt
Warning: `flexWrap: `wrap`` is not supported with the `VirtualizedList` components.Consider using `numColumns` with `FlatList` instead.
我的component.ts代码是:
GET http://localhost:3028/controller/addFile?file=C:%5CUsers%5CAcer%5CDesktop%5CDhana%5Cd%5Cs.txt 500
答案 0 :(得分:0)
只能使用ASCII字符集通过Internet发送URL。
当包含ASCII集之外的字符时,必须将URL转换为有效的ASCII格式。阅读时,您必须对URL参数进行编码和解码。