drogon/examples/simple_example/TestViewCtl.cc

10 lines
376 B
C++
Raw Normal View History

2018-05-30 05:23:59 +00:00
#include "TestViewCtl.h"
2018-10-14 07:56:54 +00:00
void TestViewCtl::asyncHandleHttpRequest(const HttpRequestPtr &req, const std::function<void(const HttpResponsePtr &)> &callback)
2018-05-30 05:23:59 +00:00
{
//write your application logic here
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
}