我在Thymleaf頁面下面的表格發送參數inThymleaf。 我以爲th:action="@{'/dashboard/makeAndSendInvoice(email=${po.Email})'}"
會做出這樣dashboard/makeAndSendInvoice/{Email}
鏈接的URL @
一個鏈接所以我試圖得到它在這樣的方法:
@RequestMapping(method=POST, path="makeAndSendInvoice")
public String makeAndSendInvoice(@PathVariable("email") String email){
System.out.println("Invoice is sent to..................."+email);
return "Invoice";
}
,但在我看來,這是行不通的,因爲它不承認我的方法。 因此,如何能接受我的方法
@Ralph ............... –