摘要:
view.py与urls.py中的请求方法配置好了之后,在iframe调用,报如下错误: Refused to display 'http://localhost:8000/welcome' in a frame because it set 'X-Frame-Options' to 'deny'. 阅读全文
摘要:
# 单继承 class GrandP(): print('GrandP') class Father(GrandP): print('Father') class Son(Father): print('Son') Son() #结果 GrandP Father Son # 多继承 class Fa 阅读全文