aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/device_memory_api/index.html
blob: 1572424f8465eb0f3f7bd70b8a3f8c023f7a8cf6 (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
69
---
title: Device Memory API
slug: Web/API/Device_Memory_API
tags:
  - Device Memory API
translation_of: Web/API/Device_Memory_API
---
<p>{{DefaultAPISidebar("Device Memory API")}}{{securecontext_header}}{{SeeCompatTable}}</p>

<p class="summary">クライアントデバイスの能力は、使用可能な RAM の量に大きく依存します。 従来、開発者は経験則を使用し、デバイスのベンチマークを行うか、デバイスの製造元や User Agent 文字列などの他の要因に基づいてデバイスの能力を推測する必要がありました。</p>

<h2 id="Accessing_device_memory_capacity" name="Accessing_device_memory_capacity">デバイスのメモリ容量へのアクセス</h2>

<p>RAM デバイスの概算量にアクセスするには、JavaScript API を使用する方法と、クライアントヒント HTTP ヘッダーを使用する方法の2つがあります。</p>

<h3 id="JavaScript_API" name="JavaScript_API">JavaScript API</h3>

<p>{{DOMxRef("Navigator.deviceMemory")}} を取得して、RAM デバイスの概算量を照会できます。</p>

<pre class="brush:js">var ram1 = window.navigator.deviceMemory;
var ram2 = navigator.deviceMemory;
</pre>

<p>これらは両方とも同じ結果を返します。</p>

<h3 id="Client_Hints_Header" name="Client_Hints_Header">クライアントヒントのヘッダー</h3>

<p><a href="/ja/docs/Glossary/Client_hints">クライアントヒント</a><code>Device-Memory</code> ディレクティブを使用して、同じ概算の RAM 容量を取得することもできます。</p>

<h2 id="&lt;h2_id" name="
&lt;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("Device Memory")}}</td>
   <td>{{Spec2("Device Memory")}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<h3 id="JavaScript_interface" name="JavaScript_interface">JavaScript インターフェイス</h3>

<div>


<p>{{Compat("api.Navigator.deviceMemory")}}</p>

<h3 id="Client_Hints_extension" name="Client_Hints_extension">クライアントヒント拡張機能</h3>

<div class="hidden">The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</div>

<p>{{Compat("http.headers.Device-Memory")}}</p>
</div>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{DOMxRef("Navigator.deviceMemory")}}</li>
 <li>{{HTTPHeader("Device-Memory")}} ヘッダー</li>
</ul>