def setAction(self, val): if not Safety.test(r'^[a-zA-Z]{2,16}$', val): self.error('命名为2~16位英文!') self.action = val
def setUrl(self,val) : if val!='' and not Safety.test(r'^[a-zA-Z]{2,24}$',val) : self.error('控制器为2~24位英文!') self.action = val