刚刚安装了phpmyadmin,然后突然弹出一个奇怪的错误:
const details = {
my_name: 'Joe',
friends: [ 'Bob', 'Alex' ],
getFriends: function() {
this.friends.forEach( function( friend ) {
console.log( this.my_name + " is friends with " + friend );
}, this ); //<-- pass this into the forEach
}
};
details.getFriends();
有一个谷歌,但没有喜悦。有人遇到过这个错误吗?如果是这样,是否有解决方法,因为它很烦人