While you try to redirect anything with url query paremeter with angular property, you may have problem with url encoding. my problem was # character to search with hashtag. example url which I was going to trying and fall to problem : www.websitename.com/search?searchkey=#somehastagword if try it like that, you will have problem : <a href="www.websitename.com/search?searchkey={{ hashtagValue}}"> {{ hashtagValue}} </a> you should use escape filter as following; angular.module('angularModuleName').filter('escape', function () { return function (input) { if (input) { return window.encodeURIComponent(input); } return ""; } }); use it in html like that : <a href="www.websitename.com/search?searchkey={{ hashtagValue | escape }}"> {{ hashtagValue}} </a> After added angula...
Bir Yazılım Mühendisinden tavsiyeler . . .