Giter Club home page Giter Club logo

Comments (7)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
This is basically a case where the error handling could be stricter rather than
silently trying to iterate over a string.

The behavior you describe as expected isn't what's intended, see:
http://code.google.com/p/json-template/wiki/Reference

The .or section is only expanded if the section is empty or missing -- not if 
it has
an item which isn't a list.

So I think we should just raise EvaluationError in case the node for a repeated
section isn't a list.


Original comment by [email protected] on 28 May 2009 at 3:40

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
Ah, I interpreted the reference document slightly different and assumed the .or
section to be also executed if the intended target (a list) was not there. 
Perhaps
that was just wishful thinking.

The use case for this is automatically generated JSON from an XML source. I 
often get
the following XML:
  <list>
    <item>one</item>
    <item>two</item>
  </list>

The generated JSON then becomes:
  {list: {item: ['one', 'two'] }}

Unfortunately, when the list has only one element, the resulting JSON is:
  {list: {item: 'one'}}

I don't have much control (or rather, I don't want to) over the way the JSON is
generated as it is done automatically by an XSLT stylesheet from an XML source. 
I was
hoping to catch this case in the template.

Original comment by [email protected] on 28 May 2009 at 8:38

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
I see.  Yeah it's unforunate that you have that type of output and don't have 
control
over it.

But there are a lot of issues you can get with arbitrary JSON, and the general
solution is to modify the data dictionary (automatically).  I just checked in a
Python example of this, in python/jsontemplate/datadict*.py.

It should be simple to do a similar thing from JavaScript for your case, 
although
possibly issue 22 is relevant too.

Original comment by [email protected] on 31 May 2009 at 7:49

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024

Original comment by [email protected] on 10 Jul 2009 at 6:31

  • Changed title: Trying to iterate over a string with repeated section should throw an error (JavaScript version)

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
b.l.stein, what did you end up doing? I have the same issue; my JSON is 
converted from XML, so sometimes a 
value is an array of strings, sometimes it is a string.

I was thinking about converting certain strings to an array of a string (a 
singleton) manually, but it's not the 
nicest solution ...

Original comment by mikkelg on 24 Jul 2009 at 1:28

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
I ended up writing formatter functions for some of my problem cases and 
rewriting the
JSON in other cases (with a simple recursive function.)

Original comment by [email protected] on 27 Jul 2009 at 4:05

from json-template.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024

Original comment by [email protected] on 7 Nov 2009 at 9:25

  • Added labels: Todo-JS

from json-template.

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.