我正在将 cpprest 用于小型 http Web 服务
当来自客户端的请求来时,我想将服务器回复响应作为 html 文件。
喜欢 :
//Webserver.cpp
...
void HandleGet(http_request request)
{
uri relativeUri = request.relative_uri();
utility::string_t path = relativeUri.path();
... some work ...
//set response instance
http_response response(status_codes::OK);
response.headers().add(U("Access-Control-Allow-Origin"), U("*"));
response.headers().set_content_type(L"text/html");
response.set_body( ***** ); // maybe html file contents be here
request.reply(response);
}
还有一个..
如果这个想法有效,那么 html 文件将存在于哪里?
cpp文件存在的同一目录?
请帮我..