<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。之后,我需要在控制器中获取相应的值。我该怎么做?