Hey everyone, I'm currently working with Framework7 and Angular.js, and everything is running smoothly. However, I encountered an issue when trying to use ng-include on one of my pages which caused my app to break. Upon investigation, I noticed that the URL was incorrect. Prior to calling the page with ng-include, my route looks like this: app/view/index.html#!/menu.html (which is correct) After loading the page with ng-include, the URL changes to: app/view/index.html#/!/requestcategories.html (with an extra slash between #! – clearly a mistake) Here's a snippet of my code:
<script type=“text/ng-template” id=“recursiveitem”>
<span>Test</span>
</script>
<div data-ng-include=“'recursive_item'”></div>
If anyone has any insights or solutions to this problem, I would greatly appreciate it. Thank you!