如何创建初始化代码?当我把__init__
constructor总是告诉我参数是错误的。另外请举一个例子也使用__new__
和一个使用super()
以及我们为什么要使用或不使用它们。
import webapp2
class MainHandler( webapp2.RequestHandler ):
def __init__( self ):
#initialization code/vars
x = 1
def get( self ):
#code for get here
self.response.write( x+1 )
def post( self ):
#code for post here
self.response.write( x+2 )
app = webapp2.WSGIApplication ( [ ('/', MainHandler) ], debug=True )