我保存一个缓存在redis中的项目,然后我检索该项目并更改它的属性。
但属性可以更改,我有以下代码: Item类:
Dim mySheet as Worksheet
Set mySheet = ThisWorkbooks.Worksheets("Summary-Champion Specific")
With mySheet
.Range(.Cells(3, 1), .Cells(3, 1)).Resize(dict.Count).Value = Application.Transpose(dict.keys)
.Range(.Cells(8 + UBound(Champ), 1), .Cells(8 + UBound(Champ), 1)).Resize(dict.Count).Value = Application.Transpose(dict.keys)
End With
现在nr仍为1,而不是2。
为什么不能修改redis中缓存的对象的属性?