- 一、什么是 Serverless
- 二、编写你的第一个 Serverless 应用
- 三、Serverless 应用是怎么运行的
- 四、如何提高应用开发调试和部署效率
- 五、serverless 应用
- 阿里云函数计算
- 腾讯云函数
- 使用 vercel 部署你的应用-推荐
- 六、场景案例
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
2.7 查询文章
发布文章的接口开发完成后,我们继续开发一个查询文章的接口,这样就可以查询出刚才创建的文章。查询文章接口定义如下。
- 请求方法:GET。
Path:/article/detail/[article_id]
- Headers 参数: Authorization token。
在查询文章接口中,我们需要在 Path 中定义文章 ID 参数,即 article_id。这样在函数代码中,你就可以通过 event 对象的 pathParameters 中获取 article_id 参数,然后根据 article_id 来查询文章详情了。完整代码如下:
const uuid = require("uuid"); const auth = require("../../middleware/auth"); const client = require("../../db/client"); /** * 获取文章详情 * @param {string} title 文章 ID */ async function getArticle(article_id) { const res = await client.getRow( "article", { article_id, }, ); return res; } module.exports.handler = function (event, context, callback) { // 身份认证 const user = auth(event); if (!user) { // 若认证失败则直接返回 return callback("身份认证失败"); } // 从 event 对象中获取文章 ID const article_id = JSON.parse(event.toString()).pathParameters['article_id']; getArticle(article_id) .then((detail) => callback(null, { success: true, data: detail }) ) .catch((error) => callback(error, { success: false, message: "创建文章失败", }) ); };
开发完成后,我们可以将其部署到函数计算,再用 curl 命令进行测试:
$ curl http://a88f7e84f71749958100997b77b3e2f6-cn-beijing.alicloudapi.com/article/detail/d4b9bad8-a0ed-499d-b3c6-c57f16eaa193 \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IkphY2siLCJpYXQiOjE2MTE0OTI2ODF9.c56Xm4RBLYl5yVtR_Vk0IZOL0yijofcyE-P7vjKf4nA" {"success":true,"data":{"article_id":"d4b9bad8-a0ed-499d-b3c6-c57f16eaa193","content":"内容内容内容......","create_date":"1/24/2021, 2:05:46 PM","title":"这是文章标题","update_date":"1/24/2021, 2:05:46 PM","username":"Jack"}}
如上所示,查询文章的接口按照预期返回了文章详情。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论