以下に実際の例を示します...しかし、1つの問題があります...html内のnode.titleは正常に動作します...しかし{{node.title}}
、ng-includeファイルに入ると...動作しません。グローバル $scope のみが表示され、「ノード」オブジェクトは表示されません
var element = angular.element($(".withOptions"));
var scope = element.scope();
var injector = element.injector();
var compile = injector.get('$compile');
compile(
'<li id="list_77"><div><i class="icon20 i-folder-open"></i>'+node.title+' <i class="icon16 i-arrow-down-2"></i><div ng-include="\'http://localhost/test/public/theme\'"></div></div></li>'
)(scope).appendTo($(".withOptions"));