Giter Club home page Giter Club logo

Comments (5)

javadev avatar javadev commented on April 28, 2024

Hi, Payas.

Thank you for your question. I will try to prepare a unit test and pull request with support json for the template method.

Best regards
Valentyn

from underscore-java.

javadev avatar javadev commented on April 28, 2024
        $.templateSettings(new HashMap<String, String>() { { put("interpolate", "\\$\\{([\\s\\S]+?)\\}");
            put("evaluate", "\\{\\{([\\s\\S]+?)\\}\\}"); } });
        String list = "{{ _.each(items, function(item) { }} <li>${ item }</li> {{ }); }}";
        Template<Set<Map.Entry<String, Object>>> compiled3 = $.template(list);
        assertEquals(" <li>moe</li>  <li>curly</li>  <li>larry</li> ",
            compiled3.apply((new LinkedHashMap<String, Object>() { {
                put("items", asList("moe", "curly", "larry")); } }).entrySet()));

I prepared an example with ${} wrapper for the variable in template.

from underscore-java.

PayasKrishna avatar PayasKrishna commented on April 28, 2024

Hi Valentyn,

Thanks for the quick response! The test case for ${ .. } works.

However, I was wondering if something like ${item.property} works as well. We note that ${item} works, where item is a String. What if item is a more complex object, with some item.property as well?

In one case, items can be a JSON: {property: "something", property: "somethingElse"}. Can we use Template class now? This idea can be arbitrarily expanded: with any level of nesting via a JSON string.

I tried to look into the source code but couldn't conclude. Can you please help?

Best,
Payas

from underscore-java.

javadev avatar javadev commented on April 28, 2024

Hi Payas,

What if item is a more complex object, with some item.property as well?

No, it will not work. Template replacer checks for the variable name inside function() and changes it inside function's body.

As I know JSON is not allowed to use the key duplicates.

Best regards, Valentyn

from underscore-java.

PayasKrishna avatar PayasKrishna commented on April 28, 2024

Hi Valentyn,

I guessed as much, but thanks for confirming. And another thanks for such quick replies. :)

Best,
Payas

from underscore-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.