标签: lithium
我有一个带字段的表单。 我希望在单击提交按钮后,我可以输入文本并在提交按钮后显示在同一页面上。这是第一次,如何检查按钮是否未单击? 你可以帮帮我吗 ? 先感谢您。 田,
答案 0 :(得分:0)
要检查网页是否提交了表单数据,您可以执行以下操作:
if ($this->request->data) { ... }或
if ($this->request->data) { ... }
if ($this->request()->data) { ... }。
if ($this->request()->data) { ... }