簡體   English   中英

res.send沒有返回預期的數據:JavaScript,Express,Node?

[英]res.send is not returning the expected data: JavaScript, Express, Node?

我有一個提交病人姓名的帖子請求,服務器應該給我發回patient_id作為響應。 我收到200 patient_id回復給客戶,但是我沒有找回patient_id 當我在服務器上控制台登錄時,我可以看到生成了patient.id ,也沒有錯誤。 想知道我是否缺少什么?

Response - 
body: (...), bodyUsed: false, headers: Headers {}, ok: true, redirected: false, status: 200, statusText: "OK", type: "basic", url: "http://localhost:4000/patient/add"
//client side post 

 handleSubmit(e) {
        e.preventDefault();
        const postUrl = '/patient/add';
        fetch(postUrl, {
            method: 'POST',
            headers: {'Content-Type': 'text/plain'},
            body: this.state.patientName
        })
            .then(response=> {
                if (!response.ok) console.log('failed', response);
                else console.log(response);
            });
    }
  this.app.post('/patient/add', bodyParser.text(),
            this.route_post_patient_add.bind(this));
 async route_post_patient_add(req, res) {
        /** @type {string} */
        const body = req.body;

        if (body === undefined) {
            logger.warning('Set room patient failed, body missing');
            res.sendStatus(400);
            return;
        }

        if (body === "") {
            logger.warning(' body is empty');
            res.sendStatus(400);
            return;
        }

        try { 
            const patient_id = await this.save_patient(body);

            res.send(patient_id);
            console.log(patient_id); //logs the id that is generated

        }
        catch (err) {
            logger.error('Set patient failed, internal error', { err });
            res.sendStatus(500);
        }
    }

fetchresponse對象不是原始主體。

您必須調用一個函數並解析一個諾言以獲取數據。

例如:

fetch("foo")
    .then(parse_body)
    .then(log_data);

function parse_body(response) {
    return response.text();
}

function log_data(response_text) {
    console.log(response_text);
}

進一步閱讀: MDN:使用提取

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM