宜兴通达竭诚为您服务。

通达科技 - 宜兴电脑维护及IT服务外包服务商

Input from website users
  • 上传者: Administrator
  • 上传时间:2024年02月24日 06时00分55秒
摘要:
Website development tutorials often require you to create forms that receive input from website users, called visitors. Use the Survey_form module to ......
正文 相关文章 请喝咖啡

    Website development tutorials often require you to create forms that receive input from website users, called visitors. Use the Survey_form module to indicate user input for your site. We need to create a new model to store the records added by the website visitors.

    Here's how to create a model and corresponding fields in the Survey.Form model.

    class SurveyForm(models.Model):
        _name = 'survey.form'
        name = fields.Char('Title', required=True)
        email = fields.Char('Email', required=True)
        phone = fields.Char('Phone', required=True)
        dob = fields.Date('Release Date')
        qualification = fields.Char('Qualification')
    

    Add a view for the survey_form module as follows:

    <record id="survey_form_tree" model="ir.ui.view">
        <field name="name">survey.form.view.tree</field>
        <field name="model">survey.form</field>
        <field name="arch" type="xml">
            <tree create="false">
                <field name="name"/>
                <field name="email"/>
                <field name="phone"/>
                <field name="dob"/>
                <field name="qualification"/>
            </tree>
        </field>
    </record>

    Add right access for the survey.module model in the ir.model.access.csv file.

    Added a new model called Survey Form for demo purposes. Next, add a new HTML form template for entering data from your website.

    To create a new root and template for the survey form page, perform the following steps.

    Step 1: Create a new route in your controller file (main.py).

    class SurveyFormController(http.Controller):
        @http.route(['/survey_form'], type='http', auth="user", website=True)
        def survey_form_view(self, **post):
            name = post.get('name')
            email = post.get('email')
            phone = post.get('phone')
            if name and email and phone:
                request.env['survey.form'].sudo().create({
                    'name': name,
                    'email': email,
                    'phone': phone,
                    'dob': post.get('dob'),
                    'qualification': post.get('qualification')
                })
                return request.redirect('/survey_form?submitted=1')
            return request.render('survey_form.survey_form_template',
                                  {'submitted': post.get('submitted', False)})
    

    We created a route that submits a survey form. The function's **post argument accepts any query parameter in the URL. It also retrieves the form data submitted with the **post argument. The demo used the same controller to display a page and submit a vote. When it finds data in **post, it creates a new issue in the Survey.form model and redirects the user to the survey page with the submitted query parameters.

    Site Visitor does not have permission to create new survey form records, so sudo() was used to create a survey form record. This is the case when a user submits a survey from her web page, and we need to create a survey form record. This is a practical example using sudo().

    Step 2: Create an HTML form with the

    <template id="survey_form_template" name="Survey Form">
        <t t-call="website.layout">
            <div class="container s_website_form">
                <h3>Survey Form</h3>
                <t t-if="submitted">
                    <h3 class="alert alert-success mt16 mb16">
                        <i class="fa fa-thumbs-up"/>
                        Survey submitted successfully
                    </h3>
                    <a href="/survey_form">Submit another survey</a>
                </t>
                <t t-else="">
                    <div class="row">
                        <div class="col-6">
                            <form id="form_survey_form"
                                  action="/survey_form" method="POST">
                                <input type="hidden" name="csrf_token"
                                     t-att-value="request.csrf_token()"/>
                                <div class="s_website_form_rows row s_col_no_bgcolor">
                                    <div class="form-group col-12">
                                        <label for="name">Name</label>
                                        <input type="text" class="form-control"
                                               name="name" placeholder="Enter your name"
                                               required="required"/>
                                    </div>
                                    <div class="form-group col-12">
                                        <label for="email">Email</label>
                                        <input type="email" class="form-control"
                                               name="email" placeholder="Enter your mail-id"
                                               required="required"/>
                                    </div>
                                    <div class="form-group col-12">
                                        <label for="phone">Phone</label>
                                        <input type="number" class="form-control"
                                               name="phone" placeholder="Enter your name"
                                               required="required"/>
                                    </div>
                                    <div class="form-group col-12">
                                        <label for="dob">DOB</label>
                                        <input type="date" class="form-control"
                                               name="dob" placeholder="dd/mm/yyyy"/>
                                    </div>
                                    <div class="form-group col-12">
                                        <label for="qualification">Qualification</label>
                                        <select class="form-control" name="qualification">
                                            <option value="">Select</option>
                                            <option value="pg">Post Graduation</option>
                                            <option value="ug">Graduation</option>
                                            <option value="higher_secondary">Higher Secondary</option>
                                            <option value="secondary">Secondary</option>
                                        </select>
                                    </div>
                                    <div class="form-group col-12">
                                        <input type="submit" class="btn btn-primary"
                                               value="Submit"/>
                                    </div>
                                </div>
                            </form>
                        </div>
                    </div>
                </t>
            </div>
        </t>
    </template>
    

    Now we created a template for a survey form web page. Adds a conditional partition that displays a success message when the form is submitted. The website uses all fields to get input from the user. However, csrf_token is used to prevent cross-site request forgery (CSRF) attacks. The user cannot submit the form unless it is used in the form. After submitting the form, the submitted data is received as the **post parameter of survey_form_view(). Update the module and open the URL /survey_form. This page allows you to submit a survey. After submission, you can view them in the corresponding Survey_form tree view in the backend.

    If you want to disable csrf verification, you may be able to use csrf=False in your root.

    @http.route('/url', type='http',auth="user", website=True, csrf=False)

    You can restrict get requests by including method parameters in the route

    like this:

    @http.route('/url, type='http', method='POST' auth="user", website=True)
    本文章从网上收集,如有侵权请联系tderp@tderp.com删除
  • 微信扫一扫,一分也是爱:
  • 微信

服务原则及地区范围

宜兴通达网络科技有限公司,地处中国宜兴环科园内,是一家高新技术企业。公司在企业网络维护和企业信息化建设与咨询方面,有10多年经验。

我公司愿与客户一道,力求彻底解决客户问题!
我们不是在给企业提供“头痛医头、脚痛医脚”的暂时解决方案,而是在部署根本性安全与稳定服务!!
我们愿携手客户,建立企业IT规划;杜绝随意安装系统、软件等操作;力求共同维护有序、安全、稳定的网络办公环境!!!
IT服务,服务是根本,客户是上帝;我们提供快速响应、快速上门、快速排查,提供优质高效的服务!!!!

通达科技提供全国范围内的服务,服务形式包括远程协助、电话咨询、电子邮件咨询、传真咨询、问答平台的问题解决等。

宜兴地区提供上门服务:

  • 市区服务:宜城街道、城北街道(屺亭街道)、新街街道、新庄街道、环科园、渚桥开发区
  • 市郊服务:张渚镇、西渚镇、太华镇、徐舍镇、官林镇、杨巷镇、新建镇、和桥镇、高塍镇、万石镇、周铁镇、芳桥镇、丁蜀镇、湖父镇。
  • 联系电话:189-21-343434
  • 在线沟通: