- 一、什么是 Serverless
- 二、编写你的第一个 Serverless 应用
- 三、Serverless 应用是怎么运行的
- 四、如何提高应用开发调试和部署效率
- 五、serverless 应用
- 阿里云函数计算
- 腾讯云函数
- 使用 vercel 部署你的应用-推荐
- 六、场景案例
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
2.8 更新文章
更新文章的 API Path 参数和查询文章一样,都需要 Path 中定义 article_id。而其 body 参数则与创建文章相同。此外,更新文章的请求 method 是 PUT,因为在 Restful API 规范中,我们通常使用 POST 来表示创建, 使用 PUT 来表示更新。
更新文章的接口定义如下。
请求方法:PUT。
- Path:/article/update/[article_id]
- Headers 参数: Authorization token。
- Body 参数:title、content。
更新文章的逻辑就是根据 article_id 去更新一行数据。代码如下:
const auth = require("../../middleware/auth"); const client = require("../../db/client"); /** * 更新文章 * @param {string} article_id 待更新的文章 ID * @param {string} title 文章标题 * @param {string} content 文章内容 */ async function updateArticle(article_id, title, content) { const now = new Date().toLocaleString(); await client.updateRow( "article", { article_id, }, { title, content, update_date: now, } ); } module.exports.handler = function (event, context, callback) { // 身份认证 const user = auth(event); if (!user) { // 若认证失败则直接返回 return callback("身份认证失败"); } const eventObject = JSON.parse(event.toString()) // 从 event 对象的 pathParameters 中获取 Path 参数 const article_id = eventObject.pathParameters['article_id']; const body = JSON.parse(eventObject.body); // 从 event 对象的 body 中获取请求体参数 const { title, content } = body; updateArticle(article_id, title, content) .then(() => callback(null, { success: true, }) ) .catch((error) => callback(error, { success: false, message: "更新文章失败", }) ); };
开发并部署完成后,使用 curl 命令进行测试:
$ curl http://a88f7e84f71749958100997b77b3e2f6-cn-beijing.alicloudapi.com/article/update/d4b9bad8-a0ed-499d-b3c6-c57f16eaa193 \ -X PUT \ -d "title=这是文章标题&content=更新的内容......" \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IkphY2siLCJpYXQiOjE2MTE0OTI2ODF9.c56Xm4RBLYl5yVtR_Vk0IZOL0yijofcyE-P7vjKf4nA" {"success":true}
返回 {"success":true}
则说明更新成功。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论