我有这段代码:
public ActionResult Test(string password)
{
return Json(TestMethod(password));
}
public bool TestMethod (string password)
{
return true;
}
但是"返回Json(TestMethod(密码));"我收到了隐私侵权漏洞。
这是因为我在Json()中调用了方法TestMethod吗?
答案 0 :(得分:0)