We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
typeidea/blog/views.py 第18行的super()的父类是哪个(super().get_context_data(**kwargs)),class CommonViewMixin 中好像没有传入父类
class CommonViewMixin: def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update({ 'sidebars': self.get_sidebars(), }) context.update(self.get_navs()) return context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
typeidea/blog/views.py 第18行的super()的父类是哪个(super().get_context_data(**kwargs)),class CommonViewMixin 中好像没有传入父类
class CommonViewMixin:
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context.update({
'sidebars': self.get_sidebars(),
})
context.update(self.get_navs())
return context
The text was updated successfully, but these errors were encountered: