aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/url/tojson/index.html
blob: 4da3e7b041eadff079012f9566303dbc1215f28d (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
---
title: URL.toJSON()
slug: Web/API/URL/toJSON
tags:
  - URL.toJSON()
translation_of: Web/API/URL/toJSON
---
<p>{{APIRef("URL API")}}</p>

<p>{{domxref("URL")}}接口的 <strong>toJSON() </strong>方法返回一个{{domxref("USVString")}},其中包含一个序列化的URL版本,尽管在实践中它似乎与{{domxref("URL.toString()")}}有相同的效果。</p>

<p>{{AvailableInWorkers}}</p>

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

<pre class="notranslate">const <em>href</em> = <em>url</em>.toJSON()</pre>

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

<p>一个 {{domxref("USVString")}}.</p>

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

<pre class="notranslate">const url = new URL("https://developer.mozilla.org/en-US/docs/Web/API/URL/toString");
url.toJSON(); // 应该以字符串形式返回URL</pre>

<h2 id="说明">说明</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">说明</th>
   <th scope="col">状态</th>
   <th scope="col">评论</th>
  </tr>
  <tr>
   <td>{{SpecName('URL', '#dom-url-tojson', 'toJSON()')}}</td>
   <td>{{Spec2('URL')}}</td>
   <td>初步定义.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>

<p>{{Compat("api.URL.toJSON")}}</p>

<div id="compat-desktop"></div>

<div id="compat-mobile"></div>