1 Star 0 Fork 4

nbsnail/ccfast

forked from zhouxiang/ccfast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
response.cpp 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhouxiang 提交于 2015-02-26 18:27 . init project
#include "response.h"
Response::Response()
{
}
Response* Response::instance()
{
static Response _s_response;
return &_s_response;
}
///
/// \brief Response::json
/// \param code_ 响应码
/// \param message_ 信息
/// \param data_ 响应数据
/// \return
///
/// {
/// "code":int,
/// "message":"",
/// "data":{
/// }
/// }
const std::string& Response::json(int code_, const std::string& message_, const KVList &data_)
{
static std::string _strjson_re(m_s_buffer_size, '\0');
static Json::FastWriter _json_fastwriter;
static Json::Value _root;
static Json::Value _data;
_root["code"] = code_;
_root["message"] = message_;
for (auto _n : data_)
{
_data[_n.first] = _n.second;
}
_root["data"] = _data;
_strjson_re = _json_fastwriter.write(_root);
_root.clear();
_data.clear();
return _strjson_re;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nbsnail/ccfast.git
git@gitee.com:nbsnail/ccfast.git
nbsnail
ccfast
ccfast
master

搜索帮助