C++ Web 框架 paozhu 1.3.0 发布
c++ 快速开发web 框架 经过实际项目开发,根据反馈和修复, 已经发布1.3.0版 paozhu框架 集成ORM HTTP/2 功能,压力测试可以平稳运行。 https://github.com/hggq/paozhu 1.3.0版更新内容 新版添加了 结构体或类对象 json_encode json_decode 功能 支持结构体嵌套和组合使用,可以反射输出JSON 或 把JSON解析到对象 比如如下结构体 namespace psy { //@reflect json to_json from_json struct department_outjson_t { unsigned int id = 0; unsigned int key = 0; unsigned int value = 0; unsigned int parentid = 0; unsigned int bianzhi_num = 0; bool isopen = true; bool _is_use = false; std::string title; std::strin...