We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6f76d9 + 95d58f2 commit 80dde47Copy full SHA for 80dde47
docs/3-web-servers/06-form/index.md
@@ -56,7 +56,7 @@ JSON は「JavaScript Object Notation」の略で JavaScript のオブジェク
56
57
:::tip URL として使用できない文字の対処方法
58
59
-URL として使用できない文字(日本語文字など)は[URL エンコード](https://ja.wikipedia.org/wiki/%E3%83%91%E3%83%BC%E3%82%BB%E3%83%B3%E3%83%88%E3%82%A8%E3%83%B3%E3%82%B3%E3%83%BC%E3%83%87%E3%82%A3%E3%83%B3%E3%82%B0)する必要があります。JavaScript なら `encodeURIComponent` 関数で変換できます。
+URL として使用できない文字(日本語文字など)は[URI エンコード](https://ja.wikipedia.org/wiki/%E3%83%91%E3%83%BC%E3%82%BB%E3%83%B3%E3%83%88%E3%82%A8%E3%83%B3%E3%82%B3%E3%83%BC%E3%83%87%E3%82%A3%E3%83%B3%E3%82%B0)する必要があります。JavaScript なら `encodeURIComponent` 関数で変換できます。
60
61
```javascript
62
encodeURIComponent("日本語"); // "%E6%97%A5%E6%9C%AC%E8%AA%9E"
0 commit comments