您的操作将不起作用 - 因为您有多个参数,您需要将BodyStyle
属性定义为Wrapped
(或者WrappedRequest
- 在您的场景中,由于操作没有返回值,所以没关系):
[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
void newUserAndImageEntry(byte[] pArrayImage, string pContentType,
string pUserName, string pFileName);
另一个问题是字节数组可能不是从 JavaScript 接收数据的好类型——它将作为一个效率不高的数字数组接收。在客户端上进行一些预处理 - 例如,将字节编码为 base64,将为您提供更小的有效负载
[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
void newUserAndImageEntry(string pArrayImageAsBase64, string pContentType,
string pUserName, string pFileName);
现在对于客户端:您需要在data
作为参数传递的对象的字段中传递参数。类似于下面的代码。查看WinJS.xhr 文档以获取有关该调用的更多详细信息。
var arrayImage = getArrayImage();
var arrayImageBase64 = convertToBase64(arrayImage);
var contentType = 'image/jpeg';
var userName = 'johndoe';
var fileName = 'balls.jpg';
var data = {
pArrayImageAsBase64: arrayImageBase64,
pContentType: contentType,
pUserName: userName,
pFileName: fileName
};
var xhrOptions = {
url: "http://localhost:9814/Student.svc/newUserAndImageEntry",
headers: { "Content-Type": "application/json" },
data: JSON.stringify(data)
};
WinJS.xhr(xhrOptions).done(
function (req) {
// Call completed, find more info on the parameter
}, function (req) {
// An error occurred, find more info on the parameter
});