将值从模板插入模板odoo中的href

时间:2018-10-09 10:23:25

标签: python html xml controller odoo

    <input type="text" name="number" t-att-value="number"/>
 <a t-if="number" href="/shop/checkout">

controller
@http.route(['/shop/checkout'], type='http', auth="public", website=True)
    def checkout(self, **post):            
        print "fr",post

考虑上面的XML代码;在数字文本字段中有一个值,我需要将该值传递给href数字(例如数字为10),然后我需要通过href传递10。之后,我需要在控制器中获取相应的值。我该怎么做?

0 个答案:

没有答案