Alwinator / Alwinator/react-native-http-bridge-refurbished
BridgeServer does not support URL/GET variables
未关闭
bug
released on @next
- 主要语言
- Java
- 星标
- 75
- 派生
- 30
- PR 合并指标
- 30 天内没有已合并 PR
描述
Basically I am trying to workaround issue #32
I am appending the fields as URL params:
```
const body = {
id: escape(song.id),
title: song.title,
thumbnailUrl: song.thumbnailUrl,
duration: song.duration,
};
const appendToUrl = new URLSearchParams(body).toString();
const result = await fetch(
`http://${get().ipAddress}/songs?${appendToUrl}`,
{
method: "POST",
body: JSON.stringify(body),
},
);
```
however it seems that the server stopped responding anymore. I encountered this problem when the url path is wrong (i.e. `/songsWrongPath` instead of `/songs`)
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。