excelIo.save(json, function (blob)
{
blob;
alert(byteToString(blob));
$.ajax({
type: "post",
dataType: "text",
url: 'Sheets.aspx',
data: { type: "save", excelblob: blob },
success: function (data)
{
alert(data);
if (data == "保存成功")
{
funclose();
}
else
{
$("#btnsave").attr("onclick", "tojson();"); //将按钮可用
}
}
});
使用POST到服务器后,接收到的excelblob一直是空
|
|