gpt4 book ai didi

javascript - 没有网络服务器的 Angular 路由来加载模板

转载 作者:行者123 更新时间:2023-11-30 05:46:33 25 4
gpt4 key购买 nike

是否可以在没有网络服务器的情况下以 Angular 加载模板,我在这里找到了一个例子:https://groups.google.com/forum/#!topic/angular/LXzaAWqWEus但对我来说,它只是打印模板路径而不是它们的内容。

有这方面的工作示例吗?

最佳答案

我忽略了问题的“无网络服务器”部分。下面是一个关于如何将模板直接放在脚本标记中并将其与指令一起使用的示例。

<body ng-app="myApp">
<script type="text/ng-template" id="templateTemplate.html">
<div>
I am the <span ng-transclude>{{templateAdjective}}</span>
template result.
</div>
</script>

<div>
<test>best</test>
<test>optimal</test>
</div>

<script>
var app = angular.module('myApp',[]);

app.directive('test', function() {
return {
restrict: 'E',
templateUrl: 'templateTemplate.html',
transclude: true,
replace: true
};
});
</script>
</body>

template in script tag jsfiddle

关于javascript - 没有网络服务器的 Angular 路由来加载模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17630698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com