Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DotLiquid/Liquid access to dictionary

I am using DotLiquid template engine and trying access dictionary value in template. I have passed to template this drop:

public class SomeDrop : Drop
{
   public Dictionary<string, object> MyDictionary {get; set;}
}

var someDropInstance = SomeDrop 
{
   MyDictionary = new Dictionary<string, object> {{"myKey", 1}}
}

Template.NamingConvention = new CSharpNamingConvention();

var preparedTemplate = Template.Parse(template);
var templateOutput = preparedTemplate.Render(Hash.FromAnonymousObject(new { @this = someDropInstance }));

In template i can't access to myKey value as {{ this.MyDictionary.myKey }} neither as {{ this.MyDictionary['myKey'] }}

like image 955
Serg Melikyan Avatar asked Nov 16 '11 15:11

Serg Melikyan


1 Answers

You need to set Template.NamingConvention before creating any drop objects. For performance reasons, the base Drop constructor caches all public instance members using the current naming convention. Even if you then change the naming convention, those cached properties are not reset.

This code works for me:

public class SomeDrop : Drop
{
    public Dictionary<string, object> MyDictionary { get; set; }
}

[Test]
public void StackOverflow()
{
    Template.NamingConvention = new CSharpNamingConvention();
    const string template = "{{ this.MyDictionary.myKey }}";

    var someDropInstance = new SomeDrop
    {
        MyDictionary = new Dictionary<string, object> { { "myKey", 1 } }
    };

    var preparedTemplate = Template.Parse(template);
    Assert.That(
        preparedTemplate.Render(Hash.FromAnonymousObject(new { @this = someDropInstance })),
        Is.EqualTo("1"));
}

I admit this is a bit of a gotcha - this is not the first time this issue has been raised. I haven't yet come up with a satisfactory solution, but any suggestions are welcome.

like image 138
Tim Jones Avatar answered Sep 26 '22 08:09

Tim Jones