gpt4 book ai didi

javascript - AngularJs:编译 ng-switch 时出错

转载 作者:行者123 更新时间:2023-12-03 12:14:10 26 4
gpt4 key购买 nike

代码

<input type="text" ng-model="person.name" />
<div ng-switch on="person.name"></div>
<p ng-switch-default>And the winner is</p>
<h1 ng-switch-when="Ari">{{ person.name }}</h1>

怎么了?我收到 Error: [$compile:ctreq] ,但是删除这 4 行一切正常。

我在“ng-book”(一本非常糟糕的书)上找到了这个例子

最佳答案

ng-switch 元素需要包装 ng-switch-onng-switch-default 指令(后者需要前者)。

<input type="text" ng-model="person.name" />
<div ng-switch on="person.name">
<p ng-switch-default>And the winner is</p>
<h1 ng-switch-when="Ari">{{ person.name }}</h1>
</div>

http://jsfiddle.net/7DJSd/

关于javascript - AngularJs:编译 ng-switch 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24805558/

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