As a newcomer to the Angular world, I am facing challenges when it comes to controlling the loading of partials in my application. When the value of a drop-down changes, I retrieve the template URL (the URL of the partial I want to display) from the server. My goal is to use this template URL to dynamically load the corresponding partial onto my page. I understand that inserting a partial can be achieved using directives, but I'm unsure how to update the template URL within the directive to load different partials. In other words, I have a "change partial method" in my controller that fetches the template URL from the server. When the ng-change event is triggered, I call this function. How can I utilize this template URL to render the partial in my designated placeholder?