Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当使用 Kendo UI 模板语法插入 JavaScript 文字值时,它会生成大写文本。例如,以下内容:
#= "Time" #
在呈现 HTML 时将“时间”转换为“时间”。
为什么会这样?如何预防?
我无法使用以下代码重现此类行为:
kendo.template('#= "time test" #')({})
无论如何,您不需要将这些字符串放在 #= # 表达式中 - 通常您想要评估变量。
这是您的代码的jsbin。