GithubHelp home page GithubHelp logo

XPath helper questions about handlebars-rust HOT 4 CLOSED

hhalex avatar hhalex commented on May 24, 2024
XPath helper questions

from handlebars-rust.

Comments (4)

sunng87 avatar sunng87 commented on May 24, 2024 1

[Object] means the value is a json object.

For now el is a json object containing the parameters of the xml element, so @el.name is a string

I think you can simplify the helper by converting matches in to a json array (because there can be multiple matches) and use each within the block, so you don't have to reimplement each:

{{#xpath xmlvar "//el"}}
  {{#each @el}}
    {{name}}
  {{/each}}
{{/xpath}}

from handlebars-rust.

hhalex avatar hhalex commented on May 24, 2024 1

Yes this works totally!

Final solution:
input xml

<node>
    <el name="v1" />
    <el name="v2" />
    <el name="v3" />
</node>

handlebars template

<node>
  {{#xpath body.text "//el[@name=\"v1\"]"}}
    <len>{{len @results}}</len>
    <results>
    {{#each @results}}
      <n>{{name}}</n>
    {{/each}}
    </results>
  {{/xpath}}
</node>

xml output

<node>
  <len>1</len>
  <results>
    <n>v1</n>
  </results>
</node>

from handlebars-rust.

sunng87 avatar sunng87 commented on May 24, 2024

May I know the data structure of el in

  {{@el.name}}

I think you can make xpath a block helper and use it like:

{{#xpath xmlvar "//el"}}
  {{@el.name}}
{{/xpath}}

In the helper you evaluate //el against value of xmlvar and convert its result to json , the put into local variable el.

from handlebars-rust.

hhalex avatar hhalex commented on May 24, 2024

For now el is a json object containing the parameters of the xml element, so @el.name is a string

<root>
  <el name="el1" />
  <el name="el2" />
  <el name="el3" />
</root>

Here is my first try that does not work totally (@el.name produces [Object] when called from the template)

https://gist.github.com/hhalex/aac4717c74b4de575602061f185b12e9

I copied the each helper file, imported a few local functions of handlebars to make it compile it.

from handlebars-rust.

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.