我有一个带有一个参数的$ http.get,它的工作方式如下:
getUserBand: function(email) {
return $http.get(baseUrl + 'selectUserBand.php?email=' + email);
},
Run Code Online (Sandbox Code Playgroud)
我想发送2个参数,如:
getUserBand: function(email,param2) {
How to call 2 parameter in this field?
},
Run Code Online (Sandbox Code Playgroud)
如何在$ http.get字段中调用email和param2?