本文整理汇总了Python中application.models.Area.save方法的典型用法代码示例。如果您正苦于以下问题:Python Area.save方法的具体用法?Python Area.save怎么用?Python Area.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类application.models.Area
的用法示例。
在下文中一共展示了Area.save方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create
# 需要导入模块: from application.models import Area [as 别名]
# 或者: from application.models.Area import save [as 别名]
def create(self, report_id, cell_pos):
r = Report.get(Key(report_id))
z, x, y = Cell.cell_id(cell_pos)
cell = Cell.get_or_create(r, x, y, z)
data = json.loads(request.data)
a = Area(geo=json.dumps(data["paths"]), type=data["type"], added_by=users.get_current_user(), cell=cell)
a.save()
cell.last_change_by = users.get_current_user()
cell.put()
return Response(a.as_json(), mimetype="application/json")
示例2: FTTest
# 需要导入模块: from application.models import Area [as 别名]
# 或者: from application.models.Area import save [as 别名]
class FTTest(unittest.TestCase):
def setUp(self):
app.config['TESTING'] = True
self.app = app.test_client()
r = Report(start=date.today(), finished=False)
r.put()
self.r = r
self.cell = Cell(x=0, y=0, z=2, report=self.r, ndfi_high=1.0, ndfi_low=0.0)
self.cell.put()
self.area = Area(geo='[[[-61.5,-12],[-61.5,-11],[-60.5,-11],[-60.5,-12]]]', added_by=users.get_current_user(), type=1, cell=self.cell)
#self.area.put()
def test_save_on_ft(self):
self.area.put()
self.area.create_fusion_tables()
self.assertNotEquals(None, self.area.fusion_tables_id)
self.area.type = 2
self.area.save()
self.area.update_fusion_tables()
self.area.delete()
self.area.delete_fusion_tables()