Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วิธีการเลือกระหว่าง `window.URL.createObjectURL ()` และ `window.webkitURL.createObjectURL ()` ตามเบราว์เซอร์


ในการเลือก คุณต้องกำหนดฟังก์ชัน wrapper -

function display ( file ) {
   if ( window.webkitURL ) {
      return window.webkitURL.createObjectURL( file );
   } else if ( window.URL && window.URL.createObjectURL ) {
      return window.URL.display( file );
   } else {
   return null;
   }
}

หลังจากนั้นตั้งค่าสำหรับเบราว์เซอร์ข้าม −

var url = display( file );