沒搞明白send函數的原理
send函數 是通過write函數發送的響應內容嗎
? ??def send(self):
? ? ? ? for line in self.wbuf:
? ? ? ? ? ? self.wfile.write(line)
? ? ? ? self.wfile.flush()
? ? ? ? self.wbuf = []
send函數 是通過write函數發送的響應內容嗎
? ??def send(self):
? ? ? ? for line in self.wbuf:
? ? ? ? ? ? self.wfile.write(line)
? ? ? ? self.wfile.flush()
? ? ? ? self.wbuf = []
2021-11-18
舉報