在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問(wèn)答/HTML/ 解決 ESLint中不能往原形添加屬性的問(wèn)題

解決 ESLint中不能往原形添加屬性的問(wèn)題

ESLint中不能往原形添加屬性的問(wèn)題

相關(guān)代碼

Date.prototype.pattern = function(fmt) {
var o = {

'M+': this.getMonth() + 1,
'd+': this.getDate(),
'h+': this.getHours() % 12 === 0 ? 12 : this.getHours() % 12,
'H+': this.getHours(),
'm+': this.getMinutes(),
's+': this.getSeconds(),
'q+': Math.floor((this.getMonth() + 3) / 3),
'S': this.getMilliseconds()

};
var week = {

'0': '/u65e5',
'1': '/u4e00',
'2': '/u4e8c',
'3': '/u4e09',
'4': '/u56db',
'5': '/u4e94',
'6': '/u516d'

};
if (/(y+)/.test(fmt)) {

fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));

}
if (/(E+)/.test(fmt)) {

fmt = fmt.replace(RegExp.$1, ((RegExp.$1.length > 1) ? (RegExp.$1.length > 2 ? '/u661f/u671f' : '/u5468') : '') + week[this.getDay() + '']);

}
for (var k in o) {

if (new RegExp('(' + k + ')').test(fmt)) {
  fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)));
}

}
return fmt;
};

如何才能在原形上添加屬性和方法?報(bào)錯(cuò)信息為Disallow Extending of Native Objects (no-extend-native);

回答
編輯回答
編輯回答
落殤
// eslint-disable-next-line no-extend-native
Date.prototype.pattern = function () {}
2018年6月29日 21:23