1. 程式人生 > 其它 >檔案流轉換為url

檔案流轉換為url

/** *檔案流轉換為url *@param{}data//檔案流 */ exportfunctiongetObjectURL(data){ varurl=null if(window.createObjectURL!==undefined){//basic url=window.createObjectURL(data) }elseif(window.webkitURL!==undefined){//webkitorchrome try{ url=window.webkitURL.createObjectURL(data) }catch(error){ console.log(error) } }elseif(window.URL!==undefined){//mozilla(firefox)
try{ url=window.URL.createObjectURL(data) }catch(error){ console.log(error) } } returnurl }