跳到主要内容

response.js

实现


const response = {
_body: null,
get body() {
return this._body;
},
set body(value) {
this._body = value;
},
};

module.exports = response;