94.(后端)分类参数ID获取接口实现——restful发送请求查询数据

1.概述

这里通过id参数,使用get请求查询数据

2.代码展示

# attribute表
# restful形式发送请求
class Attribute(Resource):
    # 增加数据
    def post(self):
        name = request.form.get('name')
        cid = request.form.get('cid')
        _type = request.form.get('_type')
        val = request.form.get('val')

        if all([name, cid, _type]):
            if val:
                attr = models.Attribute(name=name, cid=int(cid), _type=_type, val=val)
            else:
                attr = models.Attribute(name=name, cid=int(cid), _type=_type)
            db.session.add(attr)
            db.session.commit()
            return to_dict_msg(200,msg="添加商品分类数据成功!!!!")
        else:
            return to_dict_msg(10000)

    # 查询数据
    def get(self):
        try:
            id = request.args.get('id')
            attr = models.Attribute.query.get(id)
            if attr:
                return to_dict_msg(200, attr.to_dict(), msg="获取分类参数成功!!!")
            else:
                return to_dict_msg(10022)
        except Exception as e:
            return to_dict_msg(20000)
attribute_api.add_resource(Attribute, '/attribute')

3.Postman测试接口

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

想成为数据分析师的开发工程师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值