当前位置 : 主页 > 网络编程 > 其它编程 >

eggjs怎么实现新增账单接口

来源:互联网 收集:自由互联 发布时间:2023-07-02
通过前面的建表我们可以找到对应的字段如下图实现账单新增接口1、在控制层新建bill.jsusestrict;constControllerrequ 通过前面的建表我们可以找到对应的字段如下图 实现账单新增接口 1、在控
通过前面的建表我们可以找到对应的字段如下图实现账单新增接口1、在控制层新建bill.jsusestrict;constControllerrequ

通过前面的建表我们可以找到对应的字段如下图

在这里插入图片描述

实现账单新增接口

1、在控制层新建bill.js

在这里插入图片描述

use strict;const Controller require(egg).Controller;class BillController extends Controller {async add() {const { ctx, app } this;// 1、获取请求中携带的参数const { amount, type_id, type_name, date, pay_type, remark } ctx.request.body;// 2、判空处理if (!amount || !type_id || !type_name || !date || !pay_type) {ctx.body {status: 400,desc: 参数错误,data: null}return;}try {// 3、拿到 token 获取用户信息const token ctx.request.header.authorization;const decode await app.jwt.verify(token, app.config.jwt.secret);if (!decode) return;// user_id 默认添加到每个账单项用于滤出let user_id decode.idconst result await ctx.service.bill.add({amount,type_id,type_name,date,pay_type,remark,user_id});ctx.body {status: 200,desc: 请求成功,data: null}} catch (error) {ctx.body {status: 500,desc: 系统错误,data: null}}}}module.exports BillController;

2、在服务层添加bill.js

在这里插入图片描述

use strict;const Service require(egg).Service;class BillService extends Service {async add(params) {const { app } this;try {// 往 bill 表中插入一条账单数据const result await app.mysql.insert(bill, params);return result;} catch (error) {console.log(error);return null;}}}module.exports BillService;

3、添加路由

// 添加账单router.post(/api/bill/add, verify_token, controller.bill.add);

在这里插入图片描述

测试新增账单接口

上面我们已经写好了新增的逻辑接下来我们用 apifox 测试一下

1、先在 apifox 新建接口

点击新建接口之后填写好相关信息 在这里插入图片描述

2、添加参数测试

我们先登录拿到token

在这里插入图片描述

然后填写需要的参数记得把请求改成post不然会报错

在这里插入图片描述

3、检查数据库是否有新增

在这里插入图片描述

发现有数据测试成功并且用户也对应上了。

【文章原创作者:国外高防服务器 http://www.558idc.com/shsgf.html转载请说明出处】
上一篇:详解JAVA读取PDF、WORD文档办法
下一篇:没有了
网友评论