Emoji are not inserting in database node js mysql

前端 未结 1 978
臣服心动
臣服心动 2020-12-30 01:44

Hello I am here to discus one thing. I am building up a web service that makes a goal for inserting emoji data into database field. I am working with Node JS + Mysql. I set

相关标签:
1条回答
  • 2020-12-30 02:14

    please add charset : 'utf8mb4' in your mysql connection pool.

    e.g.

    var connection = mysql.createConnection({
        host : 'you_ip',
        user : 'user',
        password : 'password',
        database : 'db',
        charset : 'utf8mb4'
    });
    

    Original Post: https://www.koffeewithkode.com/emoji-are-not-inserting-in-database-node-js-mysql/

    0 讨论(0)
提交回复
热议问题