Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7075131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:08:27+00:00 2026-05-28T06:08:27+00:00

for some reason I can’t get my head around mustache templating and merging two

  • 0

for some reason I can’t get my head around mustache templating and merging two templates together…

var template = '<div class="thing"><h2>{{head}}</h2><p>{{text}}</p>{{>passwordStrength}}</div>',
    partials = {
        passwordStrength: '<div class="pStrength"><span>{{weak}}</span><span>{{medium}}</span><span>{{strong}}</span></div>'
    },
    view = {
       email: {
           head: 'Email addresses',
           text: 'are very useful if you use them properly...'
       },
       password: {
           head: 'Password',
           text: 'Put in the password of your choice',

           passwordStrength: {
               weak: 'Weak',
               medium: 'Medium',
               strong: 'Strong'
           }

       }
    };

    $.mustache(template, view['password'], partials['passwordStrength']);

The above doesn’t seem to work but its kind of how I’d expect it to. I want to keep all the textual content within the view so that all text is translated here. The passwordStrength ‘partial/template thingy’ I only want for when the password bit is rendered. I’m not quite sure how this is meant to be done. I’ve tried {{#passwordStrength}} {{/passwordStrength}} to think that it would only render if it existed but then you’ve got to pass the partial as well right and thats {{>passwordStrength}}. I don’t want it to appear all the time… only when the content is there as well. Am I doing this all totally wrong?

I guess to say that I only want a template to appear when a condition is met (we’re looking at the password view) then I’m putting logic into my templates which goes against the point of them… but the passwordStrength bit should be within a template so I’m a little confused how this is meant to be handled

Thanks, Dom

Edit: Stackoverflow won’t let me answer my own question and I’m not sure why it wouldn’t allow me to do that so I’ll have to edit my original question with my answer:

I don’t need to use partials… I just need to add the passwordStrength HTML to the original template and wrap it with {{#passwordStrength}}{{/passwordStrength}} so that IF its there (like only in the password view) then it will render the HTML and it will use the text provided in the view. Like so:

var template = '<div class="thing"><h2>{{head}}</h2><p>{{text}}</p>{{#passwordStrength}}<div class="pStrength"><span>{{weak}}</span><span>{{medium}}</span><span>{{strong}}</span></div>{{/passwordStrength}}</div>',
view = {
   email: {
       head: 'Email addresses',
       text: 'are very useful if you use them properly...'
   },
   password: {
       head: 'Password',
       text: 'Put in the password of your choice',

       passwordStrength: {
           weak: 'Weak',
           medium: 'Medium',
           strong: 'Strong'
       }

   }
};

$.mustache(template, view['password']);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:08:27+00:00Added an answer on May 28, 2026 at 6:08 am

    You were originally running into problems because you weren’t passing the whole partials object. The partials param should be an object with the key named after your partial and the value with the template.

    You are correct in your own answer that you could wrap it with {{#passwordStrength}} to optionally display it if data exists.

    I adjusted your original post in a jsFiddle so you can see it working- http://jsfiddle.net/maxbeatty/GQ2Fj/

    I separated the HTML out to make the JS easier to read:

    <script type="text/html" id="template">
      <div class="thing">
        <h2>{{head}}</h2>
    
        <p>{{text}}</p>
    
        {{>passwordStrength}}
      </div>
    </script>
    
    <script type="text/html" id="passwd">
      {{#passwordStrength}}
        <div class="pStrength">
            <span>{{weak}}</span>
            <span>{{medium}}</span>
            <span>{{strong}}</span>
        </div>
        {{/passwordStrength}}
    </script>
    

    The JS is almost identical besides passing the entire partials object:

    var template = $('#template').html(),
    partials = {
        passwordStrength: $('#passwd').html()
    },
    view = {
        email: {
            head: 'Email addresses',
            text: 'are very useful if you use them properly...'
        },
        password: {
            head: 'Password',
            text: 'Put in the password of your choice',
    
            passwordStrength: {
                weak: 'Weak',
                medium: 'Medium',
                strong: 'Strong'
            }
    
        }
    },
    html = Mustache.render(template, view['password'], partials);
    
    document.write(html);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason I can't seem to get my template to update after I
For some reason I can't find a way to get the equivalents of sqlite's
I know PHP 5 already supports SQLite but for some reason I can't get
I'm fairly new to JQuery and for some reason I can't get the currently
for some reason I can't get my tableview to enter editing mode. It's a
For some reason I can't get my SVG filters to work in Firefox. They
For some reason I can't seem to get the MySQL Net Connector to work
For some reason i can't seem to get this right ok i have 2
For some reason I can't get gdb to recognize the files in my project
For some reason I can't get static_dir to work. In my app.ymal I have:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.