解决方法
正如其他人所提到的,
Object.assign()方法在IE中不被支持,但是有一个polyfill可用,只是将它包含在你的插件声明之前:
if (typeof Object.assign != 'function') { Object.assign = function(target) { 'use strict'; if (target == null) { throw new TypeError('Cannot convert undefined or null to object'); } target = Object(target); for (var index = 1; index < arguments.length; index++) { var source = arguments[index]; if (source != null) { for (var key in source) { if (Object.prototype.hasOwnProperty.call(source,key)) { target[key] = source[key]; } } } } return target; }; }
从https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
测试页:http://jsbin.com/pimixel/edit?html,output(只需删除polyfill,以获得与您的页面上相同的错误)。