が含まれています私はこの理解して助けてください:それはgoogle/appengine/ext/db/__init__.py
のライン2744にだv1.6.6でApp EngineのUnindexedPropertyは奇妙なコード
を:
class UnindexedProperty(Property):
"""A property that isn't indexed by either built-in or composite indices.
TextProperty and BlobProperty derive from this class.
"""
def __init__(self, *args, **kwds):
"""Construct property. See the Property class for details.
Raises:
ConfigurationError if indexed=True.
"""
self._require_parameter(kwds, 'indexed', False)
kwds['indexed'] = True
super(UnindexedProperty, self).__init__(*args, **kwds)
.
.
.
、彼らが偽であることをインデックス付きパラメータを制約した後 - 彼らはそれを設定します本当に!
は恵みに感謝を@kamens。 +500この質問は恐らくあなたにはおそらく本当に気になりました:) – theosp
私は賞金を提供してくれました... – kamens