如何使用两个参数获取背景网格

how to fetch backgrid with two parameter

我正在为 table 使用 backgrid.js,我想用两个参数获取背景网格。

现在这里是我的代码,我正在尝试使用一个参数。但我不知道如何发送两个参数。

 territories.fetch({ data: { status: 1 }, processData: true, reset: true });

如果我没看错你的问题,你想发送多个选项到ajax的数据选项。根据Backbone collection fetch documentation

jQuery.ajax options can also be passed directly as fetch options, so to fetch a specific page of a paginated collection: Documents.fetch({data: {page: 3}})

对于你的情况,也许你可以这样做:

territories.fetch({ 
    data: { 
        status: 1, 
        anotherParam: "another param value" // or whatever you want it to be
    }, 
    processData: true, 
    reset: true 
});

我们可以传递任意多的参数,就像jQuery.ajax一样。 (阅读 data 选项)