#include "JsonTestController.h" #include void JsonTestController::asyncHandleHttpRequest(const HttpRequest& req,std::functioncallback) { Json::Value json; json["path"]="json"; json["name"]="json test"; Json::Value array; for(int i=0;i<5;i++) { Json::Value user; user["id"]=i; user["name"]="none"; array.append(user); } json["rows"]=array; auto resp=HttpResponse::newHttpJsonResponse(json); callback(*resp); }