moneroexamples 2019-03-13 07:19:38 +08:00 committed by wowario
parent 2a1fbbf9f1
commit d6d34dd0f2
1 changed files with 11 additions and 1 deletions

View File

@ -17,6 +17,15 @@ using namespace std;
namespace myxmr
{
struct htmlresponse: crow::response
{
htmlresponse(string&& _body)
: crow::response {std::move(_body)}
{
add_header("Content-Type", "text/html; charset=utf-8");
}
};
struct jsonresponse: crow::response
{
jsonresponse(const nlohmann::json& _body)
@ -291,7 +300,8 @@ main(int ac, const char* av[])
CROW_ROUTE(app, "/")
([&]() {
return crow::response(xmrblocks.index2());
//return crow::response(xmrblocks.index2());
return myxmr::htmlresponse(xmrblocks.index2());
});
CROW_ROUTE(app, "/page/<uint>")