I am interested in utilizing an autocomplete field
<angucomplete-alt id="members"
placeholder="Search members"
pause="400"
selected-object="testObj"
remote-url="{{remoteUrl}}"
remote-url-data-field="results"
title-field="firstName,surname"
description-field="email"
image-field="profilePic"
input-class="form-control form-control-small"/>
However, I have multiple environments where I need to use it such as development and testing.
I want to learn how to make the remote URL a variable
remote-url="{{remoteUrl}}"
so that depending on the environment, it could be
Since this is different from server-side rendering where simply /user/find?s would suffice, how can this be addressed with client-side rendering?
Thank you