[Answer]-Class-based view mess about overwriting generic view methods

1👍

I think you should put the mixin before MyViewBase, because the Python method lookup.

class Index(jsonMixin, MyViewBase):
    ...
    def data_json():
        data = []
        ...
        return data

hope helps

Leave a comment