简体   繁体   English

POST API 请求时无法在 React 中保存 state

[英]Can't save state in React while POST API request

I have handleSubmit function that send two POST request, one for img upload and one for other information.我有 handleSubmit function 发送两个 POST 请求,一个用于 img 上传,一个用于其他信息。 I want to take the response from the img upload request and take the 'filename' and then store it in state so I can sent it with the other POST request.我想从 img 上传请求中获取响应并获取“文件名”,然后将其存储在 state 中,以便我可以将其与其他 POST 请求一起发送。

Here is my Request Options这是我的请求选项

const postOptions = {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        Authorization: `Bearer ${window.localStorage.serviceToken}`
    },
    body: JSON.stringify({
        p_emp_id: empId,
        p_pr_doc_type: docType,
        p_from_date: fromDate,
        p_to_date: toDate,
        p_doc_number: docNumber,
        p_addres: address,
        p_addres_en: addressEN,
        p_doc_store: docPath,
        p_creator_id: creator,
        p_org_id: org
    })
};

Then here is my Handle Submit function然后这里是我的句柄提交 function

const handleSubmit = async (e) => {
    e.preventDefault();
    const data = new FormData();
    data.append('file', selectedFiles);
    await fetch(`${config.apiHost}single/`, {
        method: 'POST',
        body: data
    })
        .then((res) => res.json())
        .then((img) => setDocPath(img.filename))
        .catch((err) => {
            console.log(err.message);
        });
    setEditOpen(false);
    fetch(`${config.apiHost}api/employees/info/pr_docs/new/`, postOptions);
    console.log(postOptions.body);
};

My state stays empty while I submitting so after that I can't see it in my request.我的 state 在我提交时保持为空,所以之后我在我的请求中看不到它。 Please help请帮忙

you can refactor your code to this and lets see if it works;您可以将您的代码重构为此并让我们看看它是否有效;

let postOptions = {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        Authorization: `Bearer ${window.localStorage.serviceToken}`
    },
    body: {
        p_emp_id: empId,
        p_pr_doc_type: docType,
        p_from_date: fromDate,
        p_to_date: toDate,
        p_doc_number: docNumber,
        p_addres: address,
        p_addres_en: addressEN,
        p_creator_id: creator,
        p_org_id: org
    }
};

for the handle submit it can be对于句柄提交它可以是

const handleSubmit = async (e) => {
    e.preventDefault();
    const data = new FormData();
    data.append('file', selectedFiles);
    await fetch(`${config.apiHost}single/`, {
        method: 'POST',
        body: data
    })
        .then((res) => res.json())
        .then((img) => {
const postOptionsBody = {...postOptions.body, p_doc_store : img.filename }

postOptions = {...postOptions, body : JSON.stringify(postOptionsBody) }
setDocPath(img.filename)
})
        .catch((err) => {
            console.log(err.message);
        });
    setEditOpen(false);
    fetch(`${config.apiHost}api/employees/info/pr_docs/new/`, postOptions);
    console.log(postOptions.body);
};

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM