Skip to content

Commit 6001efc

Browse files
committed
update:readme and docment
1 parent caab806 commit 6001efc

File tree

6 files changed

+51
-4
lines changed

6 files changed

+51
-4
lines changed

CHANGELOG

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
XEngine_APIService V3.3.0.1001
2+
3+
增加:行政区域ID转换支持
4+
增加:天气信息查询支持
5+
增加:图像质量和压缩级别设置支持
6+
增加:日志表枚举支持
7+
更新:匹配XEngine V8.25版本
8+
修改:后台下载服务不需要等待完成即可返回消息了
9+
修改:后台上传服务不需要等待完成即可返回消息了
10+
修改:在进入HTTPTask_TastPost_Handle函数就进行解码了
11+
修复:创建日志表错误的问题
12+
修复:日志表字符集不正确的问题
13+
修复:日志协议删除表协议错误
14+
15+
added:id region convert supported
16+
added:weather info query supported
17+
added:image quality and compress level set supported
18+
added:list xlog database table supported
19+
update:match xengine v8.25
20+
modify:does not wait completed reply msg for download of back service
21+
modify:does not wait completed reply msg for upload of back service
22+
modify:after entering the HTTPTask_TastPost_Handle function, the url encoding starts to be processed.
23+
fixed:create log table is incorrect
24+
fixed:log table charsets is incorrect
25+
fixed:log protocol delete table is incorrect
26+
======================================================================================
127
XEngine_APIService V3.2.0.1001
228

329
增加:编译开关日志提示

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Support privatization deployment, free, safe, open source, controllable
2323
2. support ip address location information query
2424
3. support ID verification and information query
2525
4. support phone number information query
26-
5. Weather forecast (planned)
26+
5. Weather forecast
2727
6. Lunar calendar conversion (planning)
2828
7. News headlines (planned)
2929
8. Standard height and weight
@@ -49,7 +49,7 @@ Support privatization deployment, free, safe, open source, controllable
4949
28. remote control(back management)
5050
29. Image Process
5151
30. process deamon
52-
52+
31. Region ID Convert
5353
## install
5454

5555
#### XEngine Evn

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ c c++ interface api service
2222
2. 支持IP地址位置信息查询
2323
3. 支持身份证校验与信息查询
2424
4. 支持手机号信息归属查询
25-
5. 天气预报(计划中)
25+
5. 天气预报
2626
6. 农历公历转换(计划中)
2727
7. 新闻头条(计划中)
2828
8. 标准身高体重
@@ -48,6 +48,7 @@ c c++ interface api service
4848
28. 远程控制(后台管理)
4949
29. 图像处理
5050
30. 进程守护
51+
31. 行政区域ID转换
5152

5253
## 安装教程
5354

XEngine_APPClient/APPClient_XLogExample/APPClient_XLogExample.cpp

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,31 @@ int test_query()
9898

9999
return 0;
100100
}
101-
int test_delete()
101+
int test_list()
102102
{
103103
int nLen = 0;
104104
int nCode = 0;
105105
LPCXSTR lpszAPIUrl = _X("http://127.0.0.1:5501/api?function=log&params1=3");
106106

107+
Json::Value st_JsonRoot;
108+
109+
XCHAR* ptszMsgBuffer = NULL;
110+
if (!APIClient_Http_Request(_X("POST"), lpszAPIUrl, st_JsonRoot.toStyledString().c_str(), &nCode, &ptszMsgBuffer, &nLen))
111+
{
112+
printf("发送投递失败!\n");
113+
return 0;
114+
}
115+
printf("接受到数据,大小:%d,内容:%s\n", nLen, ptszMsgBuffer);
116+
BaseLib_OperatorMemory_FreeCStyle((XPPMEM)&ptszMsgBuffer);
117+
118+
return 0;
119+
}
120+
int test_delete()
121+
{
122+
int nLen = 0;
123+
int nCode = 0;
124+
LPCXSTR lpszAPIUrl = _X("http://127.0.0.1:5501/api?function=log&params1=4");
125+
107126
Json::Value st_JsonRoot;
108127
st_JsonRoot["tszTableName"] = lpszTableName;
109128

@@ -129,6 +148,7 @@ int main()
129148
test_insert();
130149
test_insert();
131150
test_query();
151+
test_list();
132152
test_delete();
133153

134154
#ifdef _MSC_BUILD

XEngine_Docment/Docment_en.docx

1.91 KB
Binary file not shown.

XEngine_Docment/Docment_zh.docx

1.86 KB
Binary file not shown.

0 commit comments

Comments
 (0)