We have a JSON data provides below link.
https://www-quicker.cna.com/profiles/html/profileView.do?userid=qui9090
But we need to change the link as we mention below,
https://www-quicker.cna.com/profiles/photo.do?userid=qui9090
I need to change "/html/profileView.do?" insead of "/photo.do?"
We try with filters i cant find any good method.
HTML :
<div ng-repeat="x in todos.records">
<p>
{{(x.Name === '/photo.do?') ? '/html/profileView.do?' : x.Name}}
</p>
</div>