1
class Image(db.Model):
author = db.UserProperty()
img = db.BlobProperty()
rating = db.RatingProperty()
tags = db.ListProperty()
當用戶上傳的圖像,他將進入標籤列表的是選擇用逗號 sperating所以我怎樣才能將它們存儲在使用StringListProperty數據庫或ListProperty?
謝謝
十分感謝,這是我第一次在Python開發,順便說一句使用擴展? – Peril