我通過json發送一個參數給我的控制器,該參數包含和符號,字符串被切斷。一直在尋找幾個小時,並找不到解決方案。通過json向MVC發送特殊字符
的JavaScript
var url = '/Common/DownloadFile?fileName=Me&You.xlsx';
$.ajax({
type: 'POST',
url: url,
data: {},
success: function (data) {}
});
控制器
public ActionResult DownloadFile(string fileName)
{
// Here the param is coming in as 'Me'
// Code removed for clarity
}
你能否提供關於使用的服務器端語言的更多細節?我猜.net? – jeger