0
我知道創建類的時候,我可以使用構造大規模分配:如何將屬性分配給Google Appengine/python上的模型?
attributes = {'name':'John', 'surname':'Smith', ...}
record = Model(**attributes)
,但我怎麼能分配屬性,當我有現有的記錄?
record = ....
record.???(**attributes)
謝謝!