ホームページ >ウェブフロントエンド >jsチュートリアル >JavaScript でフォーム送信のような POST リクエストをシミュレートするにはどうすればよいですか?
フォーム送信のような JavaScript での POST リクエスト
ブラウザを別のページにリダイレクトするには、次のように GET リクエストを使用できます。以下の例:
document.location.href = 'http://example.com/q=a';
ただし、POST リクエストを必要とするリソースの場合は、別のアプローチがあります。 必要。
<form action="http://example.com/" method="POST"> <input type="hidden" name="q" value="a"> </form>
に示すように、HTML は静的な送信に使用できます。一方、動的な送信には JavaScript ソリューションが推奨されます。
post_to_url('http://example.com/', {'q':'a'});
ブラウザ間の互換性には、包括的な機能が必要です。実装。次のコードは、簡単な解決策を提供します。
/** * sends a request to the specified url from a form. this will change the window location. * @param {string} path the path to send the post request to * @param {object} params the parameters to add to the url * @param {string} [method=post] the method to use on the form */ function post(path, params, method='post') { // The rest of this code assumes you are not using a library. // It can be made less verbose if you use one. const form = document.createElement('form'); form.method = method; form.action = path; for (const key in params) { if (params.hasOwnProperty(key)) { const hiddenField = document.createElement('input'); hiddenField.type = 'hidden'; hiddenField.name = key; hiddenField.value = params[key]; form.appendChild(hiddenField); } } document.body.appendChild(form); form.submit(); }
使用例:
post('/contact/', {name: 'Johnny Bravo'});
このメソッドは、ブラウザの場所を確実に変更し、フォームの送信をシミュレートします。不注意によるバグを防ぐために hasOwnProperty チェックが追加されていることに注意してください。
以上がJavaScript でフォーム送信のような POST リクエストをシミュレートするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。