Template Acquisition
can.stache.Acquisition
There are number of ways to acquire templates such as: raw text, URL, or script tags in the markup.
There are number of ways to acquire templates such as: raw text, URL, or script tags in the markup.
Raw Text
Raw text can be templated by passing the text containing your template. For example:
Script Tags
Inline script tags in your HTML document can be used to render templates. Set the
type
totext/stache
and theid
as a unique key can.view will use for look up.URL
Templates can be defined in their own files and can.view will fetch the files on render.
Since this could potentially make several XHR requests, in a big application this could be a performance concern. Creating a build step to concatenate and include all of the views in one file would be one way to optimize performance. If you are using Steal, it will do this automatically at build for you.