(self, url, postJson)
| 52 | 返回response |
| 53 | ''' |
| 54 | def getResponse(self, url, postJson): |
| 55 | response = requests.post(url, data=postJson, headers={'Content-Type':'application/x-www-form-urlencoded'},cookies=self.cookies) |
| 56 | return response |
| 57 | |
| 58 | ''' |
| 59 | 登录 |