我有一些object.ID-s,我尝试将其作为元组存储在用户会话中。当我添加第一个时,它可以工作,但是元组看起来像,(u'2',)但是当我尝试使用mytuple = mytuple + new.idgot error添加新的时can only concatenate tuple (not "unicode") to tuple。
(u'2',)
mytuple = mytuple + new.id
can only concatenate tuple (not "unicode") to tuple
您需要将第二个元素设为1元组,例如:
a = ('2',) b = 'z' new = a + (b,)