本文整理匯總了Python中google.appengine.ext.ndb.DateProperty方法的典型用法代碼示例。如果您正苦於以下問題:Python ndb.DateProperty方法的具體用法?Python ndb.DateProperty怎麽用?Python ndb.DateProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類google.appengine.ext.ndb
的用法示例。
在下文中一共展示了ndb.DateProperty方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: convert_DateProperty
# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def convert_DateProperty(self, model, prop, kwargs):
"""Returns a form field for a ``ndb.DateProperty``."""
if prop._auto_now or prop._auto_now_add:
return None
return f.DateField(format='%Y-%m-%d', **kwargs)
示例2: _get_for_dict
# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def _get_for_dict(self, entity):
value = super(DateProperty, self)._get_for_dict(entity)
if not value:
return None
return str(value)
示例3: testDateProperty_shouldConvertToString
# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def testDateProperty_shouldConvertToString(self):
self.__assert_conversion(ndb.DateProperty, DateTime)
示例4: mock_now
# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def mock_now(test, now, seconds):
"""Mocks utcnow() and ndb properties.
In particular handles when auto_now and auto_now_add are used.
"""
now = now + datetime.timedelta(seconds=seconds)
test.mock(utils, 'utcnow', lambda: now)
test.mock(ndb.DateTimeProperty, '_now', lambda _: now)
test.mock(ndb.DateProperty, '_now', lambda _: now.date())
return now