问题
Hi there I get a error message in ie11 but not in chrome the error is Script1002 Syntax error
My code is as follows
vm.NoOftroopMemEditReq = (vm.EventAttendees.TicketAttendees.filter(a => a.Attendees.some(Attendee => Attendee.IsEditRequired === true))).length;
回答1:
in IE 11 this symbol => don't work, replace => with ===
vm.NoOftroopMemEditReq = (vm.EventAttendees.TicketAttendees.filter(function (a) { return a.Attendees.some(Attendee === Attendee.IsEditRequired === true); })).length;
来源:https://stackoverflow.com/questions/46927297/ie-11-script1002-filter-syntax-error