我的表格未提交到netlify平台

时间:2019-12-11 13:16:38

标签: gatsby netlify

我正在努力使我的Netlify表单正常运行,我遇到页面未找到错误。该表格已被Netlify识别,并显示在项目的表格部分,但未注册任何提交的数据。

这是表单的代码:

            <form method="post" name="order" data-netlify="true">
                <label>
                    <h2>Full Name:</h2>
                    <input type="text" name="fullname" />
                </label>
                <label>
                    <h2>Email:</h2>
                    <input type="text" name="email" />
                </label>
                <label>
                    <h2>Contact Number:</h2>
                    <input name="contact" type="text" placeholder="optional" />
                </label>
                ]
                <label>
                    <h2>Select Pickup Store:</h2>
                    <select name="location">
                        {
                            data.allSanityShop.edges.map(({ node }) => {
                                return node.locations.map((location) => (
                                    <option value={`${node.name} - ${location.title}`}>{node.name} - {location.title}</option>
                                ))
                            }
                            )
                        }
                    </select>
                </label>



                <label>

                    <input type="text" value={fragrance} name="fragrances" />

                    <button type="submit">submit</button>

                </label>
            </form>

我尝试仅使用“ Netllify”作为属性,尝试添加和删除Netlify Recaptcha。

0 个答案:

没有答案