JSON中的三元运算符或替代方案

时间:2017-06-14 22:52:46

标签: javascript angularjs

我有一个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 

http://jsfiddle.net/hrvmxwmk/

0 个答案:

没有答案