本文整理匯總了Python中models.Course.modify方法的典型用法代碼示例。如果您正苦於以下問題:Python Course.modify方法的具體用法?Python Course.modify怎麽用?Python Course.modify使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Course
的用法示例。
在下文中一共展示了Course.modify方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: save
# 需要導入模塊: from models import Course [as 別名]
# 或者: from models.Course import modify [as 別名]
def save(self):
cour = Course.query.get(self.code.data)
if cour is None:
cour = Course(
code=self.code.data,
desp=self.desp.data,
major=self.major.data,
additional=self.additional.data,
num=self.num.data,
credit=self.credit.data,
)
else:
cour.modify(
code=self.code.data,
desp=self.desp.data,
major=self.major.data,
additional=self.additional.data,
num=self.num.data,
credit=self.credit.data,
)
cour.save()
t = transline2times(self.coursetime.data)
if t != False and t is not None and len(t) != 0:
cdel = Timeplace.query.filter(Timeplace.code == self.code.data)
cdel.delete()
for st in t:
ta = Timeplace(
code=self.code.data, weekday=st[0], starttime=st[1], durtime=st[2], place=st[3], additional=st[4]
)
ta.save()
tea = transline2tea(self.teas.data)
if tea is not None and len(tea) != 0:
tdel = Emp.query.filter(Emp.code == self.code.data)
tdel.delete()
for st in tea:
ta = Emp(code=self.code.data, teaid=st)
ta.save()
return cour