0
私は問題に直面しています。URLクエリパラメータ
私はnodeとexpressを使用しています。 Index.html
には2つの入力があります。 profile.js
で
<form action="/profile" method="get">
<input id="variable1" name="variable1" type="text" placeholder="..."> //xxx
Select :
<select id="variable2" name="variable2">
<optgroup label="y">
<option value="variable">yyy</option>
</select>
私が得た:
router.get('/profile', function(req, res){
var var1 = req.params.variable1;
var var2 = req.params.variable2;
res.render('result');
}
ノードがresult.html
をレンダリングしますが、私が手URLは質問ではなく、URLのhttps://localhost:3030/profile/xxx/yyy
を取得する方法である
https://localhost:3030/profile?variable1=xxx&variable2=yyy
です上記?
私は自分でそれを処理することができないので、私は質問を編集しました:( – BaSic
@BaSicそれが役に立ったら私の更新された答えをチェックしてください。 –
まだ何もありません。これはおそらくhttps:// localhost:3030/profileですか?variable1 = xxx&variable2 = yyy – BaSic