当前位置: 首页>>代码示例>>Python>>正文


Python Course.modify方法代码示例

本文整理汇总了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
开发者ID:jt-wang,项目名称:xk-database,代码行数:40,代码来源:admin.py


注:本文中的models.Course.modify方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。