[Django]-'dict' object has no attribute 'id'

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

Leave a comment