为了账号安全,请及时绑定邮箱和手机立即绑定

怎么用js判断网络图片的后缀?

怎么用js判断网络图片的后缀?

临摹微笑 2019-03-06 08:27:02
由于有些网络图片是没有后缀的,所以不能通过后缀的形式来判断,比如http://daaa2a59-b91e-47ad-a059-a87a8919feb4.coding.io/placeholder.php?size=200x200&bg=dcdcdc&fg=333不知道怎么通过 js 来获取这张网络图片的 mime?
查看完整描述

1 回答

?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

不跨域或者可以跨域的话

function getMime(dist) {


            return new Promise(function(resolve,reject) {

                var xhr = new XMLHttpRequest();

                xhr.open('GET', dist);

                xhr.responseType = 'blob';

                xhr.onreadystatechange = function() {

                    if(xhr.readyState == 4) {

                        if((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304) {

                            resolve(xhr.response.type);

                        }else{

                            reject();

                        }

                    }

                }

                xhr.send();

            })

        }

        getMime().then(function(type){

            console.log(type)

        },function(){

            console.log('rejct')

        });


查看完整回答
反对 回复 2019-03-11
  • 1 回答
  • 0 关注
  • 555 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信