我在二进制格式的sql server数据库中有1000个图像,我使用c#将所有图像转换为Base64 PNG
byte[] imageSize = (byte[])reader["ImageSize"];
string base64String = Convert.ToBase64String(imageSize);
当我尝试通过Web服务获取数据时,它不会返回成功。当我从查询代码中排除图像字段时,使用下面的代码获取base64图像的最快方法是什么。
$.ajax({
type: "POST",
url: "MapList.asmx/GetAllEmployees",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
// more ttask
},
error: function () {
alert("Error");
}
});