如何在夏天转义单引号
How to escape single quotes in ng-init
假设我们将数据从 apache velocity 传递到 angularjs,数据是一些包含引号的字符串,
屏幕上的错误:
Error: [$parse:lexerr] http://errors.angularjs.org/1.2.22/$parse/lexerr?
p0=Unterminated%20quote&p1=s%20327-
我的代码:
<span ng-init='draftDemands=$draftDemands;'>
如何解决这个问题
您是否在 Velocit 生成的代码中转义字符? https://velocity.apache.org/tools/2.0/apidocs/org/apache/velocity/tools/generic/EscapeTool.html
还要检查 angular 如何通过 Strict Contextual Escaping 进行转义。所以没有必要将字符显式渲染为 HTML。
This discussion could put some more light on the case.
这也应该有效:how to pass special characters into ng-init in angularjs from python
当我使用 $esc.xml($draftDemands) 时,它在我的最后一个例子中起作用,
假设我们将数据从 apache velocity 传递到 angularjs,数据是一些包含引号的字符串,
屏幕上的错误:
Error: [$parse:lexerr] http://errors.angularjs.org/1.2.22/$parse/lexerr?
p0=Unterminated%20quote&p1=s%20327-
我的代码:
<span ng-init='draftDemands=$draftDemands;'>
如何解决这个问题
您是否在 Velocit 生成的代码中转义字符? https://velocity.apache.org/tools/2.0/apidocs/org/apache/velocity/tools/generic/EscapeTool.html
还要检查 angular 如何通过 Strict Contextual Escaping 进行转义。所以没有必要将字符显式渲染为 HTML。
This discussion could put some more light on the case.
这也应该有效:how to pass special characters into ng-init in angularjs from python
当我使用 $esc.xml($draftDemands) 时,它在我的最后一个例子中起作用,