我正在编写我的第一个 SignalR 代码,但遇到了未捕获的类型错误。我的代码最初可以工作,因为我的集线器控制器将一个序列化数组返回给客户端。当我尝试使用 $.each() 方法遍历数组时会出现问题。我收到的确切错误是:
未捕获的类型错误:无法使用 'in' 运算符在 [{"OptionsId":3,"MembershipLevel":"Gold","MembershipLevelId":2,"Days":0,"Months":1, 中搜索 '95' “费用”:20.00}]
我不知道这意味着什么,所以我不确定这是否与 SignalR、jQuery 或其他相关。这是我的代码。
jQuery:
var getOptions = function () {
// reference the auto generated proxy for the hub
var vR = $.connection.vendorRegistration;
// create the function that the hub can call back to update option
vR.client.updateMembershipOptions = function (returnOptions) {
// update the selectList
$("select[name=SelectedMembershipOption]").empty();
// this is where I receive the error
$.each(returnOptions, function (index, memOption) {
$("select[name=SelectedMembershipOption]").append(
$("<option/>").attr("value", memOption.OptionsId)
.text(memOption.MembershipLevel)
);
});
};
// Start the connection
$.connection.hub.start().done(function () {
$("#VendorType").change(function () {
// call the ReturnMembershipOptions method on the hub
vR.server.returnMembershipOptions($("#VendorType")
.val());
});
});
};
服务器端:
public class VendorRegistration : Hub
{
public void ReturnMembershipOptions(int vendorTypeId)
{
// get the options
var options = AcoadRepo.Vendors.ApiLogic.MembershipOptions
.ReturnOptions(vendorTypeId);
// serialize the options
var returnOptions = JsonConvert.SerializeObject(options);
// call the updateMembershipOptions method to update the client
Clients.All.updateMembershipOptions(returnOptions);
}
}