所以我使用 ajax 帖子来调用我的值的操作。我想先检查函数的类型,我不知道该怎么做。此外,ajax 帖子被很好地调用,但其中一个参数在它应该包含数据时为空。
阿贾克斯帖子:
$.ajax({
type: "POST",
url: "AddUpdateConfigs",
data: ({id: @Model.QueueMonitorConfigurationsID, PathType: $('#ddlConfigTypeName').val(), Threshold:$('#ddlThreshold').val(), ValueType:$('#ddlValueTypeName').val(), Location: $('#txtbLocation').val(), Limit: $('#txtbLimit').val(), config: $('#NewOrUpdate').val() }),
dataType: JSON
});
我传递的数据之一是这个文本框:
@Html.TextBoxFor(cModel => cModel.Value, new { id = "txtbLimit", @type = "int" })
哪个必须是 int 但不知道如何检查或在哪里检查。我添加了@type
但它不起作用。
有任何想法吗?