How to get base64 encoded data from html image

前端 未结 2 1989
南旧
南旧 2020-12-02 15:45

I have a registration form where users can choose an avatar. They have 2 possibilities:

  1. Choose a default avatar
  2. Upload their own avatar

2条回答
  •  广开言路
    2020-12-02 16:05

    You can also use the FileReader class :

        var reader = new FileReader();
        reader.onload = function (e) {
            var data = this.result;
        }
        reader.readAsDataURL( file );
    

提交回复
热议问题