部分渲染mustache.js模板

时间:2018-12-10 14:22:59

标签: ruby mustache

我有一个模板:

 chrome.identity.launchWebAuthFlow({
     'url': url,
     'interactive': true
    }, function (redirectedTo) {
       // check errors and get token from redirect url
 });

我想分两步渲染此模板。第一步,我只想填充Hi {{first_name}}, I live in {{sender_country}}, what about you? ,下一步,我要填充sender_country

第一步之后:

first_name

第二步之后:

Hi {{first_name}},

I live in India, what about you?

基本上,我想向已经填写了国家/地区的多个发件人提供模板,然后,他们可以使用这些模板来填写他们想要联系的人的详细信息。

0 个答案:

没有答案