我有一个名为的python方法,def login_device(data):
我尝试使用带有react native的fetch api发布请求,但我总是收到错误状态500和错误消息login_device() missing 1 required positional argument: 'data'
这是我的获取请求
fetch(
"url/login_device",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
loginData: credentials,
}),
},
)
如您所见,我已经在正文中传递了数据,但我总是收到错误 login_device() missing 1 required positional argument: 'data'