如果不知道 URLDecode 是如何工作的,或者从环境中检索到 pcReq 后的原始内容是什么,就很难知道。我将从在没有网络的情况下运行此代码开始,将 cJSON 作为一个小单元进行测试,这可能会揭示出问题所在。
首先,为了帮助我们理解你的代码,在下面的代码中:
pstReq = cJSON_Parse(pstReq);
我认为你的意思是:
pstReq = cJSON_Parse(pcReq);
考虑到这一点,我将首先运行以下代码:
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
int main(int argc, char *argv[])
{
cJSON *pstReq;
char *pcReq = "{\"test\":123, \"test2\":123}";
pstReq = cJSON_Parse(pcReq);
printf("%d\n", cJSON_GetObjectItem(pstReq, "test")->valueint);
printf("%d\n", cJSON_GetObjectItem(pstReq, "test2")->valueint);
printf("%s\n",cJSON_Print(pstReq));
return EXIT_SUCCESS;
}
这对我来说按预期工作。
如果这也为您生成了正确的输出,我将添加 printf() 以查看 URLDecode() 之前和之后 pcReq 中包含的内容。问题可能来自“pcReq”本身。所以简而言之,这将是可能让您了解问题所在的代码:
int main(int argc, char *argv[])
{
cJSON *pstReq;
char *pcReq = getenv("QUERY_STRING");
printf("Content-Type: application/json\n\n");
printf ("=== pcReq before decoding ===\n");
printf("%s\n",pcReq);
printf ("=============================\n");
URLDecode(pcReq); /* Decodes the query string to JSON string */
printf ("=== pcReq after decoding ===\n");
printf("%s\n",pcReq);
printf ("=============================\n");
pstReq = cJSON_Parse(pcReq);
printf("%d\n", cJSON_GetObjectItem(pstReq, "test")->valueint);
printf("%d\n", cJSON_GetObjectItem(pstReq, "test2")->valueint);
printf("%s\n",cJSON_Print(pstReq));
return EXIT_SUCCESS;
}
我希望这有助于找到问题。