这取决于服务器接受什么,通常如果您正在与 API 交互,您将通过 JSON 发送,它会通知服务器发送的数据类型。如果您通过表单发送它,content-type(在请求的标头中)将是application/x-www-form-urlencoded.所以服务器需要配备,通常以某种类型的中间件的形式来解析它。例如,在 express js 中,你会有如下内容,// used to parse jsonapp.use(express.json());app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies