摘要: ``` const HttpRequest = function() { this.query = '' } function HttpResponse() { this.body = [] this.status = 0; } HttpResponse.prototype.write = function(block) { this.body.push(block) } H... 阅读全文
posted @ 2018-09-12 13:40 不要相信我 阅读(204) 评论(0) 推荐(0) 编辑