Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Pylons 从我的 Mako 模板访问我的 request.params 发布数据?
与控制器中的相同。
${request.params['my_param']}
或者最好:
${request.params.get('my_param', '')}