0

私は wenzhixin ブートストラップ テーブルを使用しています (使用するように作られているため)。

私はたくさんの検索フィールドを持っているので、Post ではすべてのフィールドをきれいにパッケージ化してサーバーに送り返します。 クエリ パラメータ

返すオブジェクト

サーバー側パラメーター

しかし、ご覧のとおり、pageParam のすべてのフィールドは null ですが、PrefixNameID は 1 である必要があります。pageNumber、pageSize、および sortOrder はすべて正しく、null ではないことに注意してください。

ここで私が間違っていることが明白に明らかなことはありますか?

編集: 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