|
@@ -100,6 +100,7 @@
|
|
|
data: [],
|
|
data: [],
|
|
|
method: 'get',
|
|
method: 'get',
|
|
|
url: undefined,
|
|
url: undefined,
|
|
|
|
|
+ cache: true,
|
|
|
contentType: 'application/json',
|
|
contentType: 'application/json',
|
|
|
queryParams: function (params) {return {};},
|
|
queryParams: function (params) {return {};},
|
|
|
queryParamsType: undefined,
|
|
queryParamsType: undefined,
|
|
@@ -946,6 +947,7 @@
|
|
|
type: this.options.method,
|
|
type: this.options.method,
|
|
|
url: this.options.url,
|
|
url: this.options.url,
|
|
|
data: data,
|
|
data: data,
|
|
|
|
|
+ cache: this.options.cache,
|
|
|
contentType: this.options.contentType,
|
|
contentType: this.options.contentType,
|
|
|
dataType: 'json',
|
|
dataType: 'json',
|
|
|
success: function (res) {
|
|
success: function (res) {
|