17

在 Velocity 中,我有一个名为 $url 的变量,其中包含以下字符串:[ContentId(2.7507), ContentId(2.7508), ContentId(1.44551)]

我想检查该字符串是否包含子字符串 1.44551。

这是我到目前为止编写的代码,但由于某种原因它返回 False:

#if($url.contains("1.44551"))
<p>The article content id is 1.44551</p>
#else
<p>The article content id isn't 1.44551</p>
#end

我希望这将返回 True,因为 1.44551 子字符串存在于 $url 变量中。请问有人能告诉我哪里出错了吗?

4

1 回答 1

18

Velocity 将值作为对象保存在上下文映射中。

如果要执行 String 方法,请添加toString以确保在 String 上执行该contains方法:

 #if($url.toString().contains("1.44551"))
<p>The article content id is 1.44551</p>
#else
<p>The article content id isn't 1.44551</p>
#end
于 2017-10-15T15:07:52.580 回答