我想编写一个 if 条件并检查变量是否包含某个字符串,然后编写一些逻辑。
如果我有一个变量说@param 活动
如何检查变量活动是否包含字符串“abc”?
我想编写一个 if 条件并检查变量是否包含某个字符串,然后编写一些逻辑。
如果我有一个变量说@param 活动
如何检查变量活动是否包含字符串“abc”?
从文档(https://developers.google.com/closure/templates/docs/functions_and_directives),有strContains
方法:
strContains(str, subStr)
- 检查字符串是否包含特定的子字符串。
{if strContains($activity, 'abc')}
// ...
{/if}
If you browse Closure Templates Documentation, you should be able to find what you're looking for, especially the if
section. Regardless, here's an example:
{namespace com.company.my}
/**
* My Template
* @param activity
*/
{template .main}
{if $activity == 'abc'}
//do stuff
{/if}
{/template}