我有一个Json,如果发送了一个参数,我想提出一个条件,即属性" params"存在,否则它不应出现在$ http请求中。我该怎么做?我想以最佳方式保存代码。
function getWebService(param){
$http({
method: "GET",
url: "https://www.reddit.com/.json",
params:param
//params:param?param:''
}).then(function(data) {
console.log("good")
},function(response) {
console.log("bad")
});
}
getWebService({"limit":2}); //atribute params should exist
getWebService(); //atribute params should'nt exist