cinatra
cinatra copied to clipboard
Render
Why do I get a read access violation error when implementing render. This is the code. server.set_http_handler("/data", [](const request& req, response& res) { res.set_attr("person",inja::json{{"name","xmh"},{"age",30}}); res.render_view("./data.html"); });
I replaced ninja with nlohmann
Is 'inja::json{{"name","xmh"},{"age",30}}' a string?