加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.cc 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
王祥 提交于 2023-04-06 20:57 . 网页聊天室
#include"util.hpp"
#include"server.hpp"
void test()
{
im::Usertable *ut = new im::Usertable();
im::Message *msg = new im::Message();
Json::Value body;
// body["nickname"] = "wangx";
// body["uid"] = 4;
// body["msg"] = "123456";
//body["newpassword"] = "654321";
//bool ret = ut->insert(body);
//bool ret = ut->update_passward(body);
bool ret = msg->select(20000,&body);
if(ret == false)
std::cout<<"chu cuo"<<std::endl;
else{
std::cout<<"cheng gong";
}
// std::cout<<body[0]["msg"].asCString<<endl;
std::string s;
im::JsonUtil::serialize(body,&s);
std::cout<<s<<std::endl;
//if(body != NULL)
// std::cout<<body["username"].asCString()<<std::endl;
}
void test1()
{
im::Server ser;
ser.start(9000);
}
int main()
{
test1();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化