如何将JSON数据正确解析为POST?

时间:2019-12-07 07:54:01

标签: javascript asp.net json rest

因此,我正在尝试为我的ASP.NET MVC项目实现Stripe API,并且设法达到要求我fetch()的地步,以便可以将一些数据返回到后端。 文档的第4步 https://stripe.com/docs/billing/subscriptions/set-up-subscription#dotnet

我目前正在尝试这样做

fetch("/Process", {
    method: "post",
    headers: {
        'Content-Type': "application/json"
    },
    body: JSON.stringify({
        email: "jenny.rosen@example.com",
        payment_method: "pm_1FU2bgBF6ERF9jhEQvwnA7sX"
    })
}).then(response => {
    return response.json();
}).then(customer => {
    // The customer has been created
});

它正在返回

  

SyntaxError:JSON.parse:第1行第1列的意外字符   JSON数据

当我尝试调用它时。

如何正确解析数据,以免引发该错误?

0 个答案:

没有答案