摘要: # encoding=utf-8class A(object): def __init__(self): print "初始化a" def run(self): print "运行a"class B(A): def __init__(self): ... 阅读全文
posted @ 2015-05-30 00:45 白云辉 阅读(282) 评论(0) 推荐(0) 编辑
摘要: # encoding=utf-8from app.models import Studentfrom flask import gimport refrom flask.ext.wtf import Formfrom wtforms import StringField, RadioField, P... 阅读全文
posted @ 2015-05-30 00:10 白云辉 阅读(772) 评论(0) 推荐(0) 编辑