फ़ाइलें शेयर करने का तरीका

पालेंस लियाओ
पैलेंस लियाओ

आधुनिक तरीका

Web Share API के share() तरीके का इस्तेमाल करके

फ़ाइलें शेयर करने के लिए, navigator.share() पर कॉल करें. ध्यान दें, आपको हमेशा यह देखना चाहिए कि फ़ाइलें navigator.canShare() के साथ शेयर की जा सकती हैं या नहीं. साथ ही, share() तरीके का इस्तेमाल करने से पहले, यह पक्का कर लें कि आपकी साइट एचटीटीपीएस का इस्तेमाल कर रही हो.

// Assume `blob` is a PNG image file.
const data = {
  files: [
    new File([blob], 'image.png', {
      type: blob.type,
    }),
  ],
  title: 'My title',
  text: 'My text',
};
if (navigator.canShare(data)) {
  await navigator.share(data);
}

ब्राउज़र सहायता

  • 89
  • 93
  • 12.1

सोर्स

क्लासिक तरीका

Web Share API की सुविधा के काम न करने पर, उपयोगकर्ता को अगला सबसे अच्छा तरीका यह है कि आप उन्हें फ़ाइल डाउनलोड करने की अनुमति दें, ताकि वे इसे मैन्युअल तरीके से शेयर कर सकें. उदाहरण के लिए, ईमेल या मैसेंजर या ऑनलाइन सोशल नेटवर्क ऐप्लिकेशन के ज़रिए फ़ाइल को मैन्युअल तरीके से शेयर किया जा सकता है.

ब्राउज़र सहायता

  • 15
  • 13
  • 20
  • 10.1

सोर्स

प्रोग्रेसिव एन्हैंसमेंट

जब ब्राउज़र पर वेब शेयर एपीआई काम करता है और डेटा को सही फ़ाइल टाइप के हिसाब से शेयर किया जा सकता है, तब नीचे दिए गए तरीके में Web Share API का इस्तेमाल किया जाता है. ऐसा नहीं होने पर, फ़ाइल डाउनलोड हो जाती है.

const button = document.querySelector('button');
const img =  document.querySelector('img');

// Feature detection
const webShareSupported = 'canShare' in navigator;
// Update the button action text.
button.textContent = webShareSupported ? 'Share' : 'Download';

const shareOrDownload = async (blob, fileName, title, text) => {
  // Using the Web Share API.
  if (webShareSupported) {
    const data = {
      files: [
        new File([blob], fileName, {
          type: blob.type,
        }),
      ],
      title,
      text,
    };
    if (navigator.canShare(data)) {
      try {
        await navigator.share(data);
      } catch (err) {
        if (err.name !== 'AbortError') {
          console.error(err.name, err.message);
        }
      } finally {
        return;
      }
    }
  }
  // Fallback implementation.
  const a = document.createElement('a');
  a.download = fileName;
  a.style.display = 'none';
  a.href = URL.createObjectURL(blob);
  a.addEventListener('click', () => {
    setTimeout(() => {
      URL.revokeObjectURL(a.href);
      a.remove();
    }, 1000)
  });
  document.body.append(a);
  a.click();
};

button.addEventListener('click', async () => {
  const blob = await fetch(img.src).then(res => res.blob());
  await shareOrDownload(blob, 'cat.png', 'Cat in the snow', 'Getting cold feet…');
});

इसके बारे में और पढ़ें

डेमो

एचटीएमएल

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="icon"
      href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎉</text></svg>"
    />
    <title></title>
    <link rel="stylesheet" href="style.css" />
    <!-- TODO: Devsite - Removed inline handlers -->
    <!-- <script src="script.js" type="module"></script> -->
  </head>
  <body>
    <h1>Share a file</h1>
    <img
      width="200"
      height="200"
      alt="A cat walking in the snow."
      src="cat.png"
    />
    <button type=button></button>
  </body>
</html>

CSS


        :root {
  color-scheme: dark light;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 1rem;
  font-family: system-ui, sans-serif;
}

img,
video {
  height: auto;
  max-width: 100%;
  display: block;
}

button {
  margin: 1rem;
}
        

JS


        const button = document.querySelector('button');
const img =  document.querySelector('img');

const webShareSupported = 'canShare' in navigator;
button.textContent = webShareSupported ? 'Share' : 'Download';

const shareOrDownload = async (blob, fileName, title, text) => {
  if (webShareSupported) {
    const data = {
      files: [
        new File([blob], fileName, {
          type: blob.type,
        }),
      ],
      title,
      text,
    };
    if (navigator.canShare(data)) {
      try {
        await navigator.share(data);
      } catch (err) {
        if (err.name !== 'AbortError') {
          console.error(err.name, err.message);
        }
      } finally {
        return;
      }
    }
  }
  // Fallback
  const a = document.createElement('a');
  a.download = fileName;
  a.style.display = 'none';
  a.href = URL.createObjectURL(blob);
  a.addEventListener('click', () => {
    setTimeout(() => {
      URL.revokeObjectURL(a.href);
      a.remove();
    }, 1000)
  });
  document.body.append(a);
  a.click();
};

button.addEventListener('click', async () => {
  const blob = await fetch(img.src).then(res => res.blob());
  await shareOrDownload(blob, 'cat.png', 'Cat in the snow', 'Getting cold feet…');
});