bootstrapTable post 方式请求数据 (注意POST大小写)

偶然间发现bootstrapTable 一个小的bug,请求远程数据的时候method:'POST'   与   method:'post' 是有区别的
$('#table').bootstrapTable({
	url:'...', 
        method: 'post',       
        queryParams: function (params) {
	             return param;
        }...	


下面贴出bootstrapTable 源码,一看便知

 request = $.extend({}, calculateObjectValue(null, this.options.ajaxOptions), {
            type: this.options.method,
            url:  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);
                if (!silent) that.$tableLoading.hide();
            },
            error: function (res) {
                that.trigger('load-error', res.status, res);
                if (!silent) that.$tableLoading.hide();
            }
        });
红色部分,contentType:application/json' 时,如果是大写的POST 则传递json对象参数,如果是小写post则传递 json字符串;Spring Controller 中使用 @requestBody 接收 数据时 必须为json字符串。


你可能感兴趣的:(bootstrapTable post 方式请求数据 (注意POST大小写))