0
在自定義模板(網站)中,我添加了輸入標籤。我想獲得這個標籤的價值,以便將其發送給控制器。通過將此添加到URL中,但我總是得到'None'。Odoo模板從輸入中獲取值
<template id="InputTemp" inherit_id="website_sale.cart">
<xpath expr="//div[@id='right_column']" position="after">
<div class="col-lg-3 col-lg-offset-1 col-sm-3 col-md-3 text-muted" id="inputform">
<h3>Please enter value:</h3>
<label class="control-label" for="waardebon">Value</label>
<input type="text" name="value_input" class="form-control"/>
<a t-attf-href="/cart/#{str(value_input)}" class="btn btn-primary btn-lg mt8">Submit</a>
</div>
</xpath>
</template>
感謝Philip!正是我需要的。除了保持禁用的按鈕外,也許這行(submit_button.disabled = false;)不正確? – Jesse
很高興爲您工作。我刪除了關於禁用按鈕的部分。 –