問題タブ [requestjs]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - Expressjsでリダイレクトする前にPOSTデータを変更しますか?
これは基本的に私が持っているコードです:
これは、このコードが行う必要があることです:
私が入ってボタンfile1.php
をクリックすると、からの投稿ヘッダーとして投稿Register
リクエストが送信されます。その投稿要求で何かを行い、応答を(のコールバック内で) に送り返します。次に、POST ヘッダーを に変更し、リダイレクトして画面に表示する必要があります。file1.php
{ test: "mytest" }
http://localhost:1234
file1.php
http://localhost:1234
request.post()
{ test: 1234 }
file1.php
Array([test]=>1234) [Register button]
問題は、そのテキストを画面に表示することができないことです。ヘッダーが変更されていないか、うまく変更されていないようです。私に何ができる?