gpt4 book ai didi

python - Angular.js 和 Genshi - 使用 $ 发生冲突

转载 作者:行者123 更新时间:2023-12-01 04:57:36 25 4
gpt4 key购买 nike

你好我正在使用 python、turbogears 2.2 和 Genshi 为我的 View \模板编写一个 Web 应用程序。

在 View 方面,我也使用 Angular.js。大多数时候他们在一起工作。我的问题是 – 当我想在 ng-repeat 中使用像 $index 这样的东西时我不能。当我尝试这样做时,我收到 genshi.template.eval.UndefinedError

这里有一些 html 代码来演示:

  <html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude" ng-app="orderItemEditApp">

... some code ...

<tr ngrepeat="item in items">
<td>{{$index}}</td>

....

有没有办法将 $index (或其他东西)与 genshi 和 angular.js 一起使用?感谢您的帮助

最佳答案

在 Genshi 模板中使用双美元符号进行转义:

<td>{{$$index}}</td>

将输出:

<td>{{$index}}</td>

关于python - Angular.js 和 Genshi - 使用 $ 发生冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27018551/

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