这是我的代码:
if (amount != -1)
returnJson.Add("<p style=\"color: black;\">" + double.Parse(res_q.Replace(",", ".")) * amount + " " + res_i + "</p>");
else
returnJson.Add("<p style=\"color: black;\">" + res_q + " " + " ") + res_i + "</p>");
并且无论程序执行到 if 还是 else,如果 res_q="1,5",这将在服务器上返回 15,在本地返回 1.5。
为什么会这样?