vm.$interpolate( templateString )
-
Arguments:
{String} templateString
-
Usage:
Evaluate a piece of template string containing mustache interpolations. Note that this method simply performs string interpolation; attribute directives are ignored.
-
Example:
12// assuming vm.msg = 'hello'
vm.$interpolate(
'{{msg}} world!'
)
// -> 'hello world!'
Please login to continue.