diff options
Diffstat (limited to 'files/zh-cn/conflicting/web/api')
3 files changed, 314 insertions, 0 deletions
diff --git a/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition/index.html b/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition/index.html new file mode 100644 index 0000000000..c0b2ecbe3e --- /dev/null +++ b/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition/index.html @@ -0,0 +1,113 @@ +--- +title: PositionOptions +slug: conflicting/Web/API/Geolocation/getCurrentPosition +tags: + - API + - Geolocation API + - Interface + - NeedsTranslation + - Reference + - TopicStub +translation_of: Web/API/PositionOptions +original_slug: Web/API/PositionOptions +--- +<div>{{APIRef("Geolocation API")}}</div> + +<p><strong><code>PositionOptions</code></strong> 是一个作为 <code><a href="https://developer.mozilla.org/zh-TW/docs/Web/API/Geolocation/getCurrentPosition" title="Geolocation.getCurrentPosition() 方法用來獲取設備當前的位置。">Geolocation.getCurrentPosition()</a>方法</code> 以及 <a href="https://developer.mozilla.org/zh-TW/docs/Web/API/Geolocation/watchPosition" title="Geolocation.watchPosition() 這個方法是用來註冊一個處理的函式,當使用者的裝置位置更新時,這個函式所傳入的回呼函式(callback function) 就會自動被呼叫。你也可以選擇性的定義錯誤時哪些錯誤回呼函式(error callback function) 需要被呼叫。"><code>Geolocation.watchPosition()</code></a> 方法参数的选项,此选项含有3种可以设置的属性。</p> + +<h2 id="属性">属性</h2> + +<p><em><code>PositionOptions</code> 接口不继承任何属性。</em></p> + +<dl> + <dt>{{domxref("PositionOptions.enableHighAccuracy")}}</dt> + <dd>是一个 {{domxref("Boolean")}} 值。这个布尔值用来表明应用是否使用其最高精度来表示结果。如果值为 <code>true</code> ,同时设备能够提供一个更精确的位置,那么设备就会使用这个位置。注意,这会导致较慢的响应时间或者增加电量消耗(比如对于支持gps的移动设备来说)。如果值为<code>false</code> ,设备会通过更快响应以及/或者使用更少的电量等方法来尽可能的节约资源。默认值: <code>false</code>。</dd> + <dt>{{domxref("PositionOptions.timeout")}}</dt> + <dd>的值是一个正的 <code>long</code> 值。它表明的是设备必须在多长时间(单位毫秒)内返回一个位置。默认值是 <code><a href="/en-US/docs/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code>,意思是获取到一个位置之后, <code>getCurrentPosition()</code> 才会返回一个值。</dd> + <dt>{{domxref("PositionOptions.maximumAge")}}</dt> + <dd>是一个正的 <code>long</code> 值。它表明可以返回多长时间(即最长年龄,单位毫秒)内的可获取的缓存位置。如果设置为 <code>0</code>, 说明设备不能使用一个缓存位置,而且必须去获取一个真实的当前位置。如果设置为 <code><a href="/en-US/docs/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code> ,那么不管设置的最长年龄是多少,设备都必须返回一个缓存位置。默认值:0。</dd> +</dl> + +<h2 id="方法">方法</h2> + +<p><code>PositionOptions</code> 接口既<em>不实现,也不继承任何方法。</em></p> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">规范</th> + <th scope="col">状态</th> + <th scope="col">Commet</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('Geolocation', '#positionoptions', 'PositionOptions')}}</td> + <td>{{Spec2('Geolocation')}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>5</td> + <td>{{CompatGeckoDesktop("1.9.1")}}</td> + <td>9</td> + <td>10.60<br> + {{CompatNo}} 15.0<br> + 16.0</td> + <td>5</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Chrome for Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatGeckoMobile("4")}}</td> + <td>{{CompatUnknown}}</td> + <td>10.60</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="See_also">See also</h2> + +<ul> + <li><a href="https://developer.mozilla.org/zh-CN/docs/Web/API/Geolocation/Using_geolocation" title="/en-US/docs/WebAPI/Using_geolocation">使用地理位置定位</a></li> + <li>The {{domxref("Geolocation")}} interface that uses it.</li> +</ul> diff --git a/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition_058087067b28ad25fff974fd59827fb6/index.html b/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition_058087067b28ad25fff974fd59827fb6/index.html new file mode 100644 index 0000000000..5711639408 --- /dev/null +++ b/files/zh-cn/conflicting/web/api/geolocation/getcurrentposition_058087067b28ad25fff974fd59827fb6/index.html @@ -0,0 +1,97 @@ +--- +title: PositionOptions.timeout +slug: >- + conflicting/Web/API/Geolocation/getCurrentPosition_058087067b28ad25fff974fd59827fb6 +tags: + - API +translation_of: Web/API/PositionOptions/timeout +original_slug: Web/API/PositionOptions/timeout +--- +<div>{{APIRef("Geolocation API")}}</div> + +<p><code><strong>PositionOptions.timeout</strong></code> 属性是一个 <code>long</code> 型正数,它代表机器能够等待方法返回位置的最长时间(单位是毫秒)。预设值是 <code><a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code>,这意味着 <code>getCurrentPosition</code> <code>()</code> 此方法在没有可用的位置前不会有任何回复。</p> + +<h2 id="语法">语法</h2> + +<pre class="syntaxbox"><var>positionOptions</var>.timeout = <var>timeLength</var> +</pre> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('Geolocation', '#timeout', 'PositionOptions.timeout')}}</td> + <td>{{Spec2('Geolocation')}}</td> + <td>初始定义</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>5</td> + <td>{{CompatGeckoDesktop("1.9.1")}}</td> + <td>9</td> + <td>10.60<br> + {{CompatNo}} 15.0<br> + 16.0</td> + <td>5</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Chrome for Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatGeckoMobile("4")}}</td> + <td>{{CompatUnknown}}</td> + <td>10.60</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="相关链接">相关链接</h2> + +<ul> + <li><a href="/en-US/docs/WebAPI/Using_geolocation">Using geolocation</a></li> + <li>属于{{domxref("PositionOptions")}} 接口。</li> +</ul> diff --git a/files/zh-cn/conflicting/web/api/storagemanager/estimate/index.html b/files/zh-cn/conflicting/web/api/storagemanager/estimate/index.html new file mode 100644 index 0000000000..10a5a7eba5 --- /dev/null +++ b/files/zh-cn/conflicting/web/api/storagemanager/estimate/index.html @@ -0,0 +1,104 @@ +--- +title: StorageEstimate +slug: conflicting/Web/API/StorageManager/estimate +translation_of: Web/API/StorageEstimate +original_slug: Web/API/StorageEstimate +--- +<div>{{securecontext_header}}{{APIRef("Storage")}}</div> + +<div> </div> + +<p><strong><code>StorageEstimate</code></strong> 提供对你的域名或Web app的数据存储空间总量和已用量的估计值,该对象实例由{{domxref("StorageManager")}}的{{domxref("StorageManager.estimate", "estimate()")}} 方法返回的{{jsxref("Promise")}}返回.</p> + +<p>这些值仅为估计值有多种原因,既有对性能的考虑,也有防止将其作为指纹(fingerprinting)的目的.详情请参看属性.</p> + +<h2 id="属性">属性</h2> + +<p><em>该对象目前总是同时包含以下两个属性.</em></p> + +<dl> + <dt>{{domxref("StorageEstimate.quota", "quota")}} {{securecontext_inline}}</dt> + <dd>用户设备为你的域名或Web app预留的存储空间总大小,且该大小为估计值.虽然实际上可能有比这更多的存储空间,但这时你不应使用那多余的部分.</dd> + <dt>{{domxref("StorageEstimate.usage", "usage")}} {{securecontext_inline}}</dt> + <dd>你的域名或Web app已经使用的存储空间大小,且该大小为估计值.剩余可用空间请综合quota属性计算.</dd> +</dl> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('Storage', '#dictdef-storageestimate', 'StorageEstimate')}}</td> + <td>{{Spec2('Storage')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<div>{{CompatibilityTable}}</div> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Microsoft Edge</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatChrome(55)}}</td> + <td>{{CompatGeckoDesktop(57)}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatOpera(42)}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android Webview</th> + <th>Chrome for Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatChrome(55)}}</td> + <td>{{ CompatGeckoMobile(57)}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatOperaMobile(42)}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="相关链接">相关链接</h2> + +<ul> + <li><a href="/en-US/docs/Web/API/Storage_API">Storage API</a></li> + <li>{{domxref("StorageManager")}}</li> + <li>{{domxref("StorageManager.estimate()")}}</li> + <li>{{domxref("NavigatorStorage.storage", "navigator.storage")}}</li> +</ul> |