将以数字开头的JS对象属性传递给Freemaker

时间:2016-04-18 23:33:39

标签: javascript coffeescript freemarker string-interpolation

我正在尝试将字符串传递给freemarker模板引擎。下面的代码是coffeescript的一部分。

以下字符串工作得很好。

${passThrough('
    [#if (Contact.customFields.customField)?? && Contact.customFields.customField?trim != ""]
        ${Contact.customFields.customField}
    [#else]
        If you see this you are good
    [/#if]
')}

但我想通过

Contact.customFields["1customField"]

我试图逃避双引号,但这不起作用。

有什么想法?

非常感谢!

0 个答案:

没有答案