gpt4 book ai didi

javascript - 组件类型 Angular Directive(指令) ng-template

转载 作者:行者123 更新时间:2023-11-30 12:03:00 25 4
gpt4 key购买 nike

在下面的代码中,

<!DOCTYPE html>
<html>
<head>
.....
</head>
<body ng-app="app">
<script type="text/ng-template" id="my-info-msg.html">
<strong>{{o.msg}}</strong>
</script>
<div ng-controller="emp as o">
<div my-info-msg>

</div>
</div>
</body>
</html>

var app = angular.module("app", []);

function MyController(){
this.msg= 'This is a message';
}
app.controller('emp', MyController);


function MsgDirective(){
return{
template1Url: "my-info-msg.html"
};
}
app.directive('myInfoMsg', MsgDirective);

自定义指令 my-info-msg不添加模板<strong>{{o.msg}}</strong><div my-info-msg> </div> .

请帮帮我!!!

最佳答案

正如@emil.c 指出的那样。您的代码中有错字:

templateUrl: "my-info-msg.html"

当您从 template1Url 中删除“1”时,它工作正常。

https://plnkr.co/edit/Q20v7zSHHVPNJOOievrm?p=preview

关于javascript - 组件类型 Angular Directive(指令) ng-template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36162847/

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