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 7969459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:14:24+00:00 2026-06-04T07:14:24+00:00

I know using a Template you can display multiple documents with their attributes like:

  • 0

I know using a Template you can display multiple documents with their attributes like:

// html
<template name="hello">
{{#each greetings}}
   {{message}}
{{/each}}
</template>

// js
Template.hello.greetings = function() {
   return Greetings.find();
}

Which shows Greeting.message for each greeting found document.

My question is how to use this template for only one document? (incl. no available document)

From javascript side I would use something like return Greetings.findOne({'id' : Session.get("greeting_id")});

But when using the template:

<template name="hello">
   {{message}}
</template>

an error is thrown: Uncaught TypeError: Cannot read property ‘message’ of undefined

UPDATE

For now I use this on JS side, using the template as suggested by @tom-wijsman below:

Template.hello.greeting = function() {
   var greeting = Greetings.findOne({'id' : Session.get("greeting_id")})
   if (greeting)
       return greeting;
   return {message: ""};
}
  • 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-06-04T07:14:25+00:00Added an answer on June 4, 2026 at 7:14 am

    Handlebars.js also has a #with helper.

    <template name="hello">
        {{#with greeting}}
            {{message}}
        {{/with greeting}}
    </template>
    

     

    Template.hello.greeting = function() {
        return Greetings.findOne({'id' : Session.get("greeting_id")});
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Friends, I like to know using which version of Android SDK we can develop
In Django, I know using filter with multiple arguments gets translated into SQL AND
Yes, I know that downcast using dynamic_cast can't compile if the Base is not
I'm using a ListBox to display a list of editable objects whose template contains,
I want to render some json data using HTML template. I haven't started implementing
Given a template like template<int dim> class Point { ... }; this template can
I know using prepared statements helps to avoid sql-injection. My problem is, that a
How to generate unique id's in Javascript? I know using uuid in java, but
I know that using Dim currUser As String = Request.ServerVariables(LOGON_USER) returns the Domain\Username, but
Does anyone know why using-declarations don't seem to work for importing type names from

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.