Tencent / Biny

Biny is a tiny, high-performance PHP framework for web applications
BSD 3-Clause "New" or "Revised" License
1.69k stars 258 forks source link

如何在from表单里面生成需要提交的路由地址? #80

Closed void9main closed 5 years ago

void9main commented 5 years ago

如何在from表单里面生成需要提交的路由地址?

void9main commented 5 years ago

比如indexAction中的action_login()方法,如何在html表单中action中生成相应的路由?要用哪个方法?

billge1205 commented 5 years ago

indexAction action_login 对应 路由 /index/login form 元素中用action=“/index/login” 即可 不过现在很少用form提交了 用ajax异步提交更普遍

void9main commented 5 years ago

嗯嗯,简单的一个小项目,不需要使用到ajax