diff options
Diffstat (limited to 'files/fr/web/api/workerglobalscope/location')
-rw-r--r-- | files/fr/web/api/workerglobalscope/location/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/files/fr/web/api/workerglobalscope/location/index.html b/files/fr/web/api/workerglobalscope/location/index.html new file mode 100644 index 0000000000..9406fa3aeb --- /dev/null +++ b/files/fr/web/api/workerglobalscope/location/index.html @@ -0,0 +1,69 @@ +--- +title: WorkerGlobalScope.location +slug: Web/API/WorkerGlobalScope/location +translation_of: Web/API/WorkerGlobalScope/location +--- +<p>{{APIRef("Web Workers API")}}</p> + +<p>La propriété en lecture seule <code><strong>location</strong></code> de l'interface {{domxref("WorkerGlobalScope")}} retourne l'objet {{domxref("WorkerLocation")}} associé au worker. C'est un objet location spécifique, essentiellement un sous-ensemble de {{domxref("Location")}} pour les contextes de navigation, mais adapté aux workers.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var locationObj = self.location;</pre> + +<h3 id="Specifications" name="Specifications">Valeur de retour</h3> + +<p>Un objet {{domxref("WorkerLocation")}}.</p> + +<h2 id="Exemple">Exemple</h2> + +<p>Si vous appelez l'instruction suivante dans un document délivré par <code>localhost:8000</code></p> + +<pre class="brush: js">console.log(location);</pre> + +<p>à l'intérieur d'un worker (ce qui équivaut à <code>self.console.log(self.location);</code>, puisqu'il est appelé dans le contexte du worker qui peut être référencé par {{domxref("WorkerGlobalScope.self")}}), la console vous retournera un objet {{domxref("WorkerLocation")}} — comme ce qui suit :</p> + +<pre class="brush: js">WorkerLocation {hash: "", search: "", pathname: "/worker.js", port: "8000", hostname: "localhost"…} + hash: "" + host: "localhost:8000" + hostname: "localhost" + href: "http://localhost:8000/worker.js" + origin: "http://localhost:8000" + pathname: "/worker.js" + port: "8000" + protocol: "http:" + search: "" + __proto__: WorkerLocation</pre> + +<p>Vous pouvez utiliser l'objet location pour récupérer des informations supplémentaires sur la localisation du document, comme vous pourriez le faire avec un objet {{domxref("Location")}} normal.</p> + +<div class="note"> +<p><strong>Remarque </strong>: Firefox rencontre un bogue avec l'utilisation de <code>console.log</code> à l'intérieur des workers partagés/service (voir {{Bug("1058644")}}), ce qui peut occasionner d'étranges résultats, mais cela devrait être bientôt corrigé.</p> +</div> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaire</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', '#dom-workerglobalscope-location', 'location')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + + + +<p>{{Compat("api.WorkerGlobalScope.location")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<p>{{domxref("WorkerGlobalScope")}}</p> |