1

我正在将数据从浏览器发送到 vibed。在振动控制台上,我立即收到请求。但在浏览器控制台中,我需要两次等待 console.log 5-8 秒。而且我无法理解问题出在哪里。

     postQuestionsContent : function()
     {
        this.$http.post('http://127.0.0.1:8080/questions', JSON.stringify(this.questions)).then(function(response)
        {
           console.log("Server response: ", response.status); // 5-8 seconds here

        }, function(response)
          {
            console.log("Server report that it can't process request");
          }
        ); 
      }

和D代码:

void getQuestions(HTTPServerRequest req, HTTPServerResponse res)
{

    if (req.session)
    {   
       Json questions;
       try
       {
        questions = req.json;
        writeln("We got questions content!");
        res.statusCode = 200;
       }
       catch (Exception e)
       {
        writeln("Can't parse incoming data as JSON");
        writeln(e.msg);
        writeln("------------------------------------------");
       }
    }

    else
    {
        res.statusCode = 401;
    }

   res.writeVoidBody;
}
4

1 回答 1

4

你读过文档吗?

https://vibed.org/api/vibe.http.server/HTTPServerResponse.writeVoidBody

他们在那里说:

对于空主体,只需使用 writeBody,因为此方法会导致一些保持活动连接的问题。

所以也许你应该尝试使用

https://vibed.org/api/vibe.http.server/HTTPServerResponse.writeBody

于 2016-03-22T14:34:29.620 回答