0

我有反应片段:

const model = {
    Code: 'somecode',
    Elements: elements,
    ...more
}

apiPost(url, false, model)
        .then(
)

然后:

export function apiPost(url, addAuth, json) {
    return apiFetch('post', url, addAuth, json)
}



function apiFetch(method, url, addAuth, json, file) {

let opts = {
    method: method,
    headers: {}
}

if (addAuth) {
    opts.headers = { ...opts.headers, ...authHeader() }
}

if (json) {
    opts.headers = { ...opts.headers, ...{ 'content-type': 'application/json' } }
    opts.body = JSON.stringify(json);
}

if (file) {
    opts.body = file;
}

return fetch(baseUrl() + url, opts).then(handleResponse)

}

我在 api 端收到它:

    [HttpPost]
    public async Task<JsonResult> Post([System.Web.Http.FromBody] SurveyEntry model)
    {
        try
        {
            ...
        }
        catch (Exception ex)
        {
            ...
        }
    }

但它model是空的。

我很困惑为什么会这样。

有什么建议我做错了吗?

4

0 回答 0