我有文件上传和一些输入文本,我想使用 WCF 将值更新到 DB。
到目前为止,我通过字符串数组发送所有输入值,但我看不到如何使用 WCF 将文件上传到服务器
html:
<input id="file" type="file" >
<textarea name="textarea" class="jqte"> </textarea>
...
javascript:
$.ajax({
url: "/WebServices/forum.svc/InsertMessage",
type: "POST",
data: JSON.stringify({ currentMessage: currentMessage }),
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
}
});
周转基金:
[OperationContract]
public void InsertMessage(List<string> currentMessage)
{
return;
}
知道如何解决这个问题吗?
谢谢
巴罗兹