response.js
实现
const response = {
_body: null,
get body() {
return this._body;
},
set body(value) {
this._body = value;
},
};
module.exports = response;
const response = {
_body: null,
get body() {
return this._body;
},
set body(value) {
this._body = value;
},
};
module.exports = response;