I am trying to write an adapter for a client-side HTML/JS templating system to use dust.js under the hood. Unfortunately the API expects render operations to occur synchronously: the rendered output should be returned from the render() call. Dust.js is asynchronous and passes render output to a callback function. Is there any way to work around this, either in the Dust APIs or through some crazy Javascript hack?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
DustJS is only going to execute things asynchronously when the resources it needs to render (templates, partials) haven't already all been loaded. If all the dependencies of a template are loaded before you execute that template then it'll execute synchronously (as far as I can tell anyhow). So you can do something like:
Here is a fuller example below: (and here is a jsfiddle link so you can run it: http://jsfiddle.net/uzTrv/1/)
There could be cases (besides the one I mentioned) where I'm wrong... I don't know everything about dustjs. |
|||||||
|
|
I too wanted to have a function that accepted a context and returned the dust rendered text. Here is the solution I came up with:
Usage
|
||||
|
|