Error in the request how to fix it?
$http.get('http://example.com/get_phone_number.php?number=*100#&name='+name).success(function(data) { // console.log(data); }); error after # such sign does not work
Error in the request how to fix it?
$http.get('http://example.com/get_phone_number.php?number=*100#&name='+name).success(function(data) { // console.log(data); }); error after # such sign does not work
Try using the function: encodeURIComponent
Usage example: http://javascript.ru/encodeuricomponent
Source: https://ru.stackoverflow.com/questions/505213/
All Articles