73
You are accessing the dictionary wrongly. You need to use subscript with string 'id'
, Example โ
taskViewModel = TaskViewModel(task['id'], True)
9
I got the same error when accessing "id" in dictionary with dot "." like JavaScript as shown below because I also use JavaScript quite often in addition to Python:
user = {"id": 1, "name": "John"}
print(user.id) # Error
So, I accessed "id" with brackets "[]" as shown below then the error was solved:
user = {"id": 1, "name": "John"}
print(user["id"]) # 1
- [Django]-Is django prefetch_related supposed to work with GenericRelation
- [Django]-Django โ Getting last object created, simultaneous filters
- [Django]-Django Model โ Get distinct value list
Source:stackexchange.com