aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/navigator/credentials/index.html
blob: 1389dcb1db94cfc08c991e410c81732953537bf7 (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
---
title: credentials
slug: Web/API/Navigator/credentials
translation_of: Web/API/Navigator/credentials
---
<p>{{SeeCompatTable}}{{APIRef("")}}</p>

<p>{{domxref("Navigator")}}接口的<strong><code>credentials</code></strong>属性返回{{domxref("CredentialsContainer")}}接口,该接口暴露了请求凭证的方法。 {{domxref("CredentialsContainer")}}接口还会在下相关事件发生时通知用户,例如登录或注销成功。该接口可用于特征检测。</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">var credentialsContainer = navigator.credentials</pre>

<h3 id="返回值">返回值</h3>

<p>{{domxref("CredentialsContainer")}} 接口.</p>

<h2 id="示例">示例</h2>

<pre class="brush: js">if ('credentials' in navigator) {
  navigator.credentials.get({password: true})
  .then(function(creds) {
    //Do something with the credentials.
  });
} else {
  //Handle sign-in the way you did before.
};
</pre>

<h2 id="Specifications">Specifications</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('Credential Management')}}</td>
   <td>{{Spec2('Credential Management')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

{{Compat("api.Navigator.credentials")}}