Appengine: TypeError: 'NoneType' object does not support item assignment

4.6k Views Asked by At

Tring to assign a value via constructor. but getting "TypeError: 'NoneType' object does not support item assignment".

import webapp2
from google.appengine.ext import ndb

class test(ndb.Model):
    status = ndb.StringProperty(default=None)

    def __init__(self):
         self.status = "Test Status"


class MainPage(webapp2.RequestHandler):
     def get(self):
          a = test()
          a.put()           


app = webapp2.WSGIApplication([('/', MainPage)], debug=True)

Error:

  File "/home/user/Appengine/guestbook/guestbook.py", line 15, in get
    a = test()
  File "/home/user/Appengine/guestbook/guestbook.py", line 10, in __init__
    self.status = "Test Status"
  File "/home/user/google_appengine/google/appengine/ext/ndb/model.py", line 1265, in __set__
    self._set_value(entity, value)
  File "/home/user/google_appengine/google/appengine/ext/ndb/model.py", line 1011, in _set_value
    self._store_value(entity, value)
  File "/home/user/google_appengine/google/appengine/ext/ndb/model.py", line 992, in _store_value
    entity._values[self._name] = value
TypeError: 'NoneType' object does not support item assignment
2

There are 2 best solutions below

0
On

You probably need to initialize the ndb.Model properly by calling its __init__:

class test(ndb.Model):
    status = ndb.StringProperty(default=None)

    def __init__(self):
        ndb.Model.__init__(self)
        self.status = "Test Status"
0
On

If you want to pass over any arguments, you'd need to do

class Test(ndb.Model): # Classes have uppercase first letter...
    status = ndb.StringProperty(default=None)

    def __init__(self, *a, **k):
        super(Test, self).__init__(self)
        self.status = "Test Status"

Then you should be able to do

a = Test(foo='bar')

I'm not sure about the status thing, however.