表單提交時,動作URL未能正確跳轉
<p>當我提交表單時,它沒有將我帶到正確的URL,而是只停留在相同的URL上並將參數添加到其中。就像這樣:/todo?message=themessage,而不是應該是/todo/add</p>
<pre class="brush:php;toolbar:false;"><form>
<div class="form-group" action="/todo/add" method="POST">
<label for="message">新增新的待辦事項訊息</label>
<input type="text" class="form-control" name="message" id="message">
<button type="submit" class="btn btn-primary">加</button>
</div>
</form></pre>
<p>在我的/todo/add URL中,我有一個分配給該路由的php腳本,它只會回顯一個字串,以查看表單是否命中了該URL,但實際上它沒有,只是停留在相同的頁面上並帶有參數。 </p>