Nodejs 中的 PUT 请求问题
Issue with PUT Request in Nodejs
我有下面的代码,它对 GET 和 POST 工作正常,但对节点 js 中的 PUT 无效。我正在为 GET 和 PUT 使用方法重载。下面是我的 app.js 代码。
如果我在这里遗漏了什么,你能帮帮我吗?基本上,我试图通过在 URL 中提供客户名称以及在请求的 BODY 部分中提供其他详细信息来执行 PUT 请求。因此,如果具有 name 的客户存在,它将更新它,否则新建它。
import { Router } from 'express';
const AuthRoutes = Router();
const AppRoutes = Router();
AuthRoutes.get('/customer/:customername', getCustomerbyname);
AuthRoutes.post('/calculate/:id', calculate);
AuthRoutes.put('/customer/:customername', saveCustomer);
低于 URL 我正在尝试 PUT。
我不知道我在这里错过了什么。
Error - You don't have permission to access /domainname/customer/abc
好像您已经为路由设置了身份验证但忘记了对其进行身份验证? Middleware
可能已经设置,所以也许尝试验证。
// routes.js
import { Router } from 'express';
const Router = Router()
Router.get('/customer/:customername', getCustomerbyname)
.put('/customer/:customername', saveCustomer);
Router.post('/calculate/:id', calculate);
module.exports = router
/// in app.js or server.js or index.js
// import the router
import {router as customerRoutes} from './routes.js
// add to your app
app.use('/',customerRoutes)
我有下面的代码,它对 GET 和 POST 工作正常,但对节点 js 中的 PUT 无效。我正在为 GET 和 PUT 使用方法重载。下面是我的 app.js 代码。
如果我在这里遗漏了什么,你能帮帮我吗?基本上,我试图通过在 URL 中提供客户名称以及在请求的 BODY 部分中提供其他详细信息来执行 PUT 请求。因此,如果具有 name 的客户存在,它将更新它,否则新建它。
import { Router } from 'express';
const AuthRoutes = Router();
const AppRoutes = Router();
AuthRoutes.get('/customer/:customername', getCustomerbyname);
AuthRoutes.post('/calculate/:id', calculate);
AuthRoutes.put('/customer/:customername', saveCustomer);
低于 URL 我正在尝试 PUT。
我不知道我在这里错过了什么。
Error - You don't have permission to access /domainname/customer/abc
好像您已经为路由设置了身份验证但忘记了对其进行身份验证? Middleware
可能已经设置,所以也许尝试验证。
// routes.js
import { Router } from 'express';
const Router = Router()
Router.get('/customer/:customername', getCustomerbyname)
.put('/customer/:customername', saveCustomer);
Router.post('/calculate/:id', calculate);
module.exports = router
/// in app.js or server.js or index.js
// import the router
import {router as customerRoutes} from './routes.js
// add to your app
app.use('/',customerRoutes)