phpmyadmin显示奇怪的错误消息

时间:2019-05-15 20:58:09

标签: phpmyadmin

刚刚安装了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();

有一个谷歌,但没有喜悦。有人遇到过这个错误吗?如果是这样,是否有解决方法,因为它很烦人

0 个答案:

没有答案