HTTP Params
Get
Get a single parameter of the service:
crudService.getParam(name : string) : stringGet the parameters instance of the service:
crudService.getParams() : HttpParamsGet values for a single parameter of the service:
crudService.getParamArray(name : string) : string[]Set
Set a single parameter of the service:
crudService.setParam(name : string, value : string) : thisSet the parameters instance of the service:
crudService.setParams(params : HttpParams) : thisSet values for a single parameter of the service:
crudService.setParamArray(name : string, valueArray : string[]) : thisAppend
Append a single parameter to the service:
crudService.appendParam(name : string, value : string) : thisAppend values to a single parameter of the service:
crudService.appendParamArray(name : string, valueArray : string) : thisClear
Clear a single parameter of the service:
crudService.clearParam(name : string) : thisClear the parameters instance of the service:
crudService.clearParams() : thisLast updated