为什么Hubspot无法获取任何表单数据?

时间:2018-08-28 12:14:44

标签: javascript jquery hubspot hubspot-crm

我正尝试发送一个发布请求,以在HubSpot上提交表单数据。 API返回一条成功消息,代码为200,消息为“ 已提交表单”。

这是`

#define CONST ...
#define FUNC(...) ...

`

这是HTML表单:

$("#basicForm").submit(function(e) {

        e.preventDefault(); // avoid to execute the actual submit of the form.
        var data = new FormData($('#basicForm')[0]);
        var form = $(this);


        $.ajax({
            type: "POST",
            url: 'https://api.hsforms.com/submissions/v3/integration/submit/4848030/3d98fe1e-278b-4915-9c81-5b69206a4b4f',
            cache: false,
            contentType: false,
            processData: false,
            headers: {
                 'Content-Type':'application/json'
             },

             data: JSON.stringify(data),

            success: function(data) {
                console.log(data);

            },
            error:function(e){
                console.log(e);
            }
        });


    });

我收到一条成功消息,但HubSpot显示“未提交任何字段。”

0 个答案:

没有答案