drogon/examples/simple_example/TestViewCtl.cc

12 lines
381 B
C++
Raw Normal View History

2018-05-30 05:23:59 +00:00
#include "TestViewCtl.h"
2019-05-18 12:39:57 +00:00
void TestViewCtl::asyncHandleHttpRequest(
const HttpRequestPtr &req,
std::function<void(const HttpResponsePtr &)> &&callback)
2018-05-30 05:23:59 +00:00
{
2019-05-18 12:39:57 +00:00
// write your application logic here
2018-05-30 05:23:59 +00:00
drogon::HttpViewData data;
2018-10-14 07:56:54 +00:00
data.insert("title", std::string("TestView"));
auto res = drogon::HttpResponse::newHttpViewResponse("TestView", data);
2018-08-26 08:25:35 +00:00
callback(res);
2018-11-16 05:26:14 +00:00
}