如何在基本模块 odoo 12 的表单中超级按钮类型="submit"?

How to super the button type="submit" in a form in base module odoo 12?

xml 文件

<template id="auth_signup.signup" name="Sign up login">
            <t t-call="web.login_layout">
                <form class="oe_signup_form" role="form" method="post" t-if="not message">
                  <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>

                    <t t-call="auth_signup.fields">
                        <t t-set="only_passwords" t-value="bool(token and not invalid_token)"/>
                    </t>

                    <p class="alert alert-danger" t-if="error" role="alert">
                        <t t-esc="error"/>
                    </p>
                    <input type="hidden" name="redirect" t-att-value="redirect"/>
                    <input type="hidden" name="token" t-att-value="token"/>
                    <div class="text-center oe_login_buttons pt-3">
                        <button type="submit" class="btn btn-primary btn-block"> Sign up</button>
                        <a t-attf-href="/web/login?{{ keep_query() }}" class="btn btn-link btn-sm" role="button">Already have an account?</a>
                        <div class="o_login_auth"/>
                    </div>
                </form>
            </t>
        </template>

我想做的是我需要将表单提交到我的自定义模块中,我需要在模型 A 中创建一个记录,其中包含用户在输入登录数据并注册时提供的登录数据。 请随意询问我的解释是unclear.Thanks,

您需要覆盖 web_auth_signup 方法并从 kw 字典获取登录数据。

from odoo.addons.auth_signup.controllers.main import AuthSignupHome


class CustomAuthSignupHome(AuthSignupHome):

    @http.route('/web/signup', type='http', auth='public', website=True, sitemap=False)
    def web_auth_signup(self, *args, **kw):
        response = super(CustomAuthSignupHome, self).web_auth_signup(*args, **kw)
        
        # {'login': 'user', 'name': 'User', 'password': 'aL=5&A3#C"H([Sdr', 'confirm_password': 'aL=5&A3#C"H([Sdr', 'redirect': '', 'token': ''}

        return response