逃避“在NV速度
我怎样才能在NVelocity中逃脱“?
例如 test.message = "136# 1/4" Test Test Test"
如果我这样做
如果我这样做,它会显示:136# 1/4
它会显示:136
如果我这样做,
它显示:136# 1/4" Test Test Test 但它转义了 '
how我可以显示 136# 1/4" 测试测试测试而不转义任何内容吗?
how can I escape " in NVelocity ?
e.g.
test.message = "136# 1/4" Test Test Test"
if I do <input type="text" id="Test.Description" value="$test.message"/>
it displays : 136# 1/4
if I do <input type="text" id="Test.Description" value=$test.message/>
it displays : 136
if I do <input type="text" id="Test.Description" value='$test.message'/>
it displays : 136# 1/4" Test Test Test but it escapes '
how can I display 136# 1/4" Test Test Test without escaping anything ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,nVelocity 没有内置的 HTML 编码工具(已经有一些关于在未来版本中添加它的讨论)
同时,在您的控制器中,您只需要执行
以下操作:
nVelocity, at this time, has no built-in facility for HTML-encoding it's variables (there has been some talk about adding it in a future version)
In the meantime, in your controller, you'll just need to do:
or