for my web app我使用C#WebService,JavaScript,jQuery和JavaScript我将图像上传到具有以下结构的表中:
Id | FileName | ContentType | Content
1 |Tulips.jpg| image/jpeg | (Binary/Image)
我想在HTML页面中显示此信息,目前我的HTML显示此信息:
2 | Tulips.jpg | image/jpeg | System.Byte[]
我想显示图像而不是System.Byte [],我该怎么做? 这是我的全部代码:
C#class
公共类Imagenes { public Imagenes(){}
public Imagenes(int id, string fileName, string type, string content)
{
Id = id;
FileName = fileName;
Type = type;
Content = content;
}
public int Id { get; set; }
public string FileName { get; set; }
public string Type { get; set; }
public string Content { get; set; }
}
DataBase Class
这里没有问题只是一个Select * from。
的WebMethod
[WebMethod]
public string Image(int id)
{
DataTable dt = new DataTable();
dt = conn.consultImg("tbl_images", id);
Imagenes img;
List<Imagenes> list = new List<Imagenes>();
for (int i = 0; i < dt.Rows.Count; i++)
{
img = new Imagenes();
img.Id = Convert.ToInt32(dt.Rows[i]["Id"]);
img.FileName = dt.Rows[i]["FileName"].ToString();
img.Type = dt.Rows[i]["ContentType"].ToString();
img.Content = dt.Rows[i]["Content"].ToString();
list.Add(img);
img = null;
}
JavaScriptSerializer js = new JavaScriptSerializer();
string lines = js.Serialize(list);
return lines;
}
和JavaScript代码:
var id = $('#Id').val();
$.ajax({
type: "POST",
url: "ws_MyWebService.asmx/Image",
data: '{"id":' + id + '}',
dataType: 'json',
contentType: 'application/json',
timeout: 60000,
error: function (xhr) {
},
success: function (data) {
var aRC = JSON.parse(data.d);
var lines = "";
for (var i = 0; i < aRC.length; i++) {
var id = aRC[i].Id;
var fname = aRC[i].FileName;
var type = aRC[i].Type;
var content = aRC[i].Content;
lines += '<p>' + id + '</p>';
lines += '<p>' + fname + '</p>';
lines += '<p>' + type + '</p>';
lines += '<p>' + content + '</p>';
}
$('#MyDiv').html(lines);
答案 0 :(得分:2)
您需要对原始代码进行两处更改:
WebMethod
//Change this line
img.Content = dt.Rows[i]["Content"].ToString();
//Use this instead
img.Content = Convert.ToBase64String(Serialize(dt.Rows[i]["Content"]));
额外方法
public static byte[] Serialize(object obj)
{
var binaryFormatter = new BinaryFormatter();
var ms = new MemoryStream();
binaryFormatter.Serialize(ms, obj);
return ms.ToArray();
}
<强>的JavaScript 强>
//Replace this line
lines += '<p>' + content + '</p>';
//With this one
line += '<p><img src="data:image/jpeg;base64,' + content + '" /></p>';
您可以在Web.config
上设置 MaxJsonLength 属性:
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="50000000"/>
</webServices>
</scripting>
</system.web.extensions>
</configuration>
答案 1 :(得分:0)
您可以返回图像的base64编码字符串表示。
使用Convert.ToBase64String Method。
输出图像的地方就是:
<img src="data:image/jpeg;base64, <!-- base64 string here -->" />
&#13;