I've got a strange issue and can't figure it out. When I'm calling $http.get
with params like
{oneId: 111
twoId: 222
stringValue: null}
then stringValue
is absent and the request goes like
http://my-uri.com/action?oneId=111&twoId=222
But if stringValue
setted as undefined
then it goes ok. What's wrong there?