我正在使用cpprest进行小型http网络服务
当来自客户端的请求到来时,我想将服务器回复响应作为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文件存在的目录相同吗?
请帮帮我..
答案 0 :(得分:0)
html将被发送到客户端,您不会在本地保存它。