Skip to content

HandlebarsUndefinedBinding thrown for null ExpandoObject values #351

@andycnguyen

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.)

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