DRF ‘tuple‘ object has no attribute ‘startswith‘

用DRF写数据接口;访问数据接口出现 ‘tuple’ object has no attribute ‘startswith’


```python
class Merchant(models.Model):
    id = models.CharField(verbose_name='主键', db_column='MerchantId', primary_key=True, max_length=50,
                          default=UUIDTools.uuid4, editable=False)
    name = models.CharField(verbose_name='商户名称', db_column='Name', max_length=50, blank=True, null=True)
    short_name = models.CharField(verbose_name='商户简称', db_column='ShortName', max_length=50, blank=True, null=True)
    license = models.CharField(verbose_name='烟草证号', db_column='License', max_length=50, blank=True, null=True)
    channel = models.IntegerField(verbose_name='默认支付通道', db_column='Channel', max_length=255, blank=True, null=True)

    class Meta:
        app_label = 'app-payments',
        db_table = 'pos_merchant',
        verbose_name = '商户',
        verbose_name_plural = verbose_name

原来是在通过一个内嵌类 “class Meta” 给你的 model 定义元数据时不需要加逗号(,)
``

`class Meta:
        app_label = 'app-payments'
        db_table = 'pos_merchant'
        verbose_name = '商户'
        verbose_name_plural = verbose_name
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值