我正在使用ES6和Babel,我想知道是否有更简洁的方法使用rest / spread运算符重写以下函数。
如何设置babel预设。 谢谢你们。
init(fields, file, res, req) {
// I want the following mapping done automatically
this.fields = fields;
this.file = file;
this.res = res;
this.req = req;
},