未验证 提交 0e57b621 编写于 作者: S slguan 提交者: GitHub

Merge pull request #124 from maikebing/master

Modify  json's date to Json standard time format ISO-8601
......@@ -266,11 +266,11 @@ void httpJsonTimestamp(JsonBuf* buf, int64_t t) {
struct tm* ptm;
time_t tt = t / 1000;
ptm = localtime(&tt);
int length = (int)strftime(ts, 30, "%Y-%m-%d %H:%M:%S", ptm);
int length = (int)strftime(ts, 30, "%Y-%m-%dT%H:%M:%S", ptm);
snprintf(ts+length, MAX_NUM_STR_SZ, ".%03ld", t % 1000);
snprintf(ts+length, MAX_NUM_STR_SZ, ".%03ldZ", t % 1000);
httpJsonString(buf, ts, length + 4);
httpJsonString(buf, ts, length + 5);
}
void httpJsonInt(JsonBuf* buf, int num) {
......@@ -422,4 +422,4 @@ void httpJsonPairStatus(JsonBuf* buf, int code) {
httpJsonPair(buf, "desc", 4, tsError[code], (int)strlen(tsError[code]));
}
}
}
\ No newline at end of file
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册