我得到下面的错误时,试图导出到Excel从剑道网格的大数据。当我们在网格上有小数据时,它工作得很好。
使用JSON JavaScriptSerializer进行序列化或反序列化时出错。字符串的长度超过了maxJsonLength属性上设置的值
.Excel(excel => excel
.FileName("Trip List Export.xlsx")
.Filterable(false)
.ProxyURL(Url.Action("ExcelExport", "Grid"))
.AllPages(true)
)
public ActionResult ExcelExport(string contentType, string base64, string fileName)
{
var fileContents = Convert.FromBase64String(base64);
return File(fileContents, contentType, fileName);
}
字符串
2条答案
按热度按时间inkz8wg91#
去掉“Excel”部分,加上这个
字符串
然后,在控制器中:
型
请注意,我使用自定义模型,也使用this library
im9ewurl2#
我希望能帮上忙。这样我就解决了问题
字符串