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
Source:stackexchange.com