Skip to content

HandlebarsUndefinedBinding thrown for null ExpandoObject values #351

Description

@andycnguyen

I've been trying to convert my Handlebars models to ExpandoObjects, as recommended in various issues here. However, I've found that that a HandlebarsUndefinedBinding exception is thrown for null values.

For example, I'd like to make use of templates and models like the following:

{{#if PerhapsNull}}
     It's not null
{{else}}
     It's null
{{/if}}
dynamic data = new ExpandoObject();
data.PerhapsNull = null;

This doesn't work, however, due to the aforementioned exception. I'm aware that I could suppress this exception by setting ThrowOnUnresolvedBindingExpression = false, but I'd rather not do this. (And it seems to me that, in the example I've given, the expression in question should not be considered unresolved.)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions