0

我正在使用 wenzhixin 引导表(因为我被迫使用它)。

我有一堆搜索字段,所以在 Post 上,我将所有字段都打包好并整齐地发送回服务器。 查询参数

要回传的对象

服务器端参数

但是正如您所见,pageParam 中的所有字段都是空的,但 PrefixNameID 应该是 1。请注意 pageNumber、pageSize 和 sortOrder 都是正确的,而不是空的。

有什么明显的地方我做错了吗?

编辑:Ajax 调用 - 这是作者的代码

request = $.extend({}, calculateObjectValue(null, this.options.ajaxOptions), {
        type: this.options.method,
        url: this.options.url,
        data: this.options.contentType === 'application/json' && this.options.method === 'post' ?
            JSON.stringify(data) : data,
        cache: this.options.cache,
        contentType: this.options.contentType,
        dataType: this.options.dataType,
        success: function (res) {
            res = calculateObjectValue(that.options, that.options.responseHandler, [res], res);

            that.load(res);
            that.trigger('load-success', res);
        },
        error: function (res) {
            that.trigger('load-error', res.status);
        },
        complete: function () {
            if (!silent) {
                that.$loading.hide();
            }
        }
    });

编辑2:

JSON.stringify(data): "{"pageSize":10,"pageNumber":1,"sortOrder":"asc","pageParam":{"ID":null,"PrefixNameID":null,"FirstName":null,"MiddleName":null,"LastName":null,"SuffixName":null,"Address1":null,"Address2":null,"City":null,"StateID":null,"Zipcode":null,"EmployeeTypeID":null,"NPI":null}}"

圣牛,它是无效的!

4

0 回答 0