blob: 041163cac3f494de3b1ab1bd2a6c20696add0079 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
---
title: Navigator.share
slug: Web/API/Navigator/share
translation_of: Web/API/Navigator/share
---
<div>{{APIRef("HTML DOM")}}{{SeeCompatTable}}</div>
<p>La méthode <strong><code>Navigator.share()</code></strong> invoque le mécanisme de partage natif de l'appareil. Celle-ci appartient à l'API Web Share. Si l'API Web Share n'est pas supportée, alors la méthode sera <code>undefined</code>.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">var sharePromise = window.navigator.share(<var>data</var>);
</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><var>data</var></dt>
<dd>Un objet contenant les données à partager. Au moins un des champs suivant doit être spécifié. Les champs possibles sont les suivant : </dd>
</dl>
<ul>
<li><code>url</code>: Un {{domxref("USVString")}} représentant l'URL à partager.</li>
<li><code>text</code>: Un {{domxref("USVString")}} représentant le texte à partager.</li>
<li><code>title</code>: Un {{domxref("USVString")}} représentant le titre à partager.</li>
</ul>
<dl>
</dl>
<h3 id="Valeur_retournée">Valeur retournée</h3>
<p>Une {{domxref("Promise")}} qui sera résolue une fois que l'utilisateur aura finalisé son action de partage. Elle sera rejetée immédiatement si le paramètre <var>data</var> n'est pas correctement spécifié.</p>
<p>Par exemple, sur Chrome pour Android, la <code>Promise</code> retournée sera résolue après que l'utilisateur ait choisi une application vers où partager ses données.</p>
<h2 id="Examples">Examples</h2>
<pre class="brush: js">navigator.share({
title: document.title,
text: 'Hello World',
url: 'https://developer.mozilla.org',
}); // partage l'URL de MDN</pre>
<h2 id="Specifications">Specifications</h2>
<table>
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Web Share API','#share-method','share()')}}</td>
<td>{{Spec2('Web Share API')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("api.Navigator.share")}}</p>
|