12 lines
381 B
C++
12 lines
381 B
C++
#include "TestViewCtl.h"
|
|
void TestViewCtl::asyncHandleHttpRequest(
|
|
const HttpRequestPtr &req,
|
|
std::function<void(const HttpResponsePtr &)> &&callback)
|
|
{
|
|
// write your application logic here
|
|
drogon::HttpViewData data;
|
|
data.insert("title", std::string("TestView"));
|
|
auto res = drogon::HttpResponse::newHttpViewResponse("TestView", data);
|
|
callback(res);
|
|
}
|