Мопс, если заявление в форме не извлекает данные - PullRequest
2 голосов
/ 05 мая 2019

Я пытаюсь динамически создать форму в мопсе.

form(method='POST' action=postRoute)
                        each component in step.components
                            .row
                                if (component.pug == 'name')
                                    input(type="text", name="title")
                                    include component/name
                                else if (component.pug == 'description')
                                    include component/description
                                else if (component.pug == 'thumbnail')
                                    include component/imageLoader
                                else if (component.pug == 'tag_field')
                                    include component/addTags
                                else if (component.pug == 'tag_equipment')
                                    include component/addEquipmentTags
                                else if (component.pug == 'plans')
                                    .add-plans-background-area
                                        .row
                                            a(href='#')
                                                .add-plan(onclick='addNewPlan()') +
                                        - for (var i = 0; i < 3; ++i)
                                            .row.plan-preview-in-create(onclick='previewPlan()')
                                                .col-md-1
                                                    img(src='https://www.healthline.com/hlcmsresource/images/bodybuilding-meal-plan-1296x728-feature.jpg').plan-thumbnail
                                                .col-md-10
                                                    .plan-name= 'Package name ' + i

                                                .col-md-1
                                                    .plan-exit
                                                        a(href='#' onclick='removePlanFromPackage()')
                                                            i.material-icons.menu-icon= 'close'


                                else
                                    p= component.pug

                        .row.buttons-group
                            - if (index == 0)
                                .col-md-2
                                    button(type="button" onclick=`nextInStepSectionDidClick('${stepIds}', '${index}')`).next-button-base.next-button-enable NEXT
                            - else if (index == (config.length - 1))
                                .col-md-2
                                    button(type="button" onclick=`backInStepSectionDidClick('${stepIds}', '${index}')`).back-button-base BACK
                                .col-md-2
                                    button.next-button-base.next-button(type='submit') SAVE
                            - else
                                .col-md-2
                                    button(type="button" onclick=`backInStepSectionDidClick('${stepIds}', '${index}')`).back-button-base BACK
                                .col-md-2
                                    button(type="button" onclick=`nextInStepSectionDidClick('${stepIds}', '${index}')`).next-button-base.next-button-enable NEXT

Как вы видите, у меня есть для каждого и из файла конфигурации, я создаю форму динамически. Это поможет мне в проекте, так как у меня много похожих мнений.

В любом случае, когда я отправляю форму, я не могу извлечь данные, но когда я добавляю один вход над оператором if, я могу его извлечь.

// Get submited data
router.post('/', function (req, res) {
    console.log(req.body);
    res.send('Post page');
})

Есть мысли, как это решить?

...