Giter Club home page Giter Club logo

Comments (2)

serdar avatar serdar commented on June 2, 2024 1

Thanks Ozgur! It set me on the right path, I ended up doing the following:

Advice: {
  OriginatingAccountRecords: {
    OriginatingAccountRecord: {
      OriginatingAccount: {},
        ReturnedDebitItem: getReturnedDebitItems()
    }
  }
}

function getReturnedDebitItems(){
    return [
      { "@ref": "a", "@code": "b", PayerAccount: {'@number': 123} },
      { "@ref": "a", "@code": "b", PayerAccount: {'@number': 123} },
      { "@ref": "c", "@code": "b", PayerAccount: {'@number': 123} }
    ];
  }

Resulting in:

<Advice>
  <OriginatingAccountRecords>
    <OriginatingAccountRecord>
      <OriginatingAccount/>
      <test/>
      <test/>
      <test/>
      <test2/>
      <ReturnedDebitItem ref="a" code="b">
        <PayerAccount number="123"/>
      </ReturnedDebitItem>
      <ReturnedDebitItem ref="a" code="b">
        <PayerAccount number="123"/>
      </ReturnedDebitItem>
      <ReturnedDebitItem ref="c" code="b">
        <PayerAccount number="123"/>
      </ReturnedDebitItem>
    </OriginatingAccountRecord>
  </OriginatingAccountRecords>
</Advice>

I also found using XPath to find the nodes and then inserting elements also works

var nodes = xpath.select('//OriginatingAccount', root);
  nodes[0].insertAfter("test2")
  nodes[0].insertAfter("test")
  nodes[0].insertAfter("test")
  nodes[0].insertAfter("test")

from xmlbuilder-js.

oozcitak avatar oozcitak commented on June 2, 2024

Please see: https://github.com/oozcitak/xmlbuilder-js/wiki/Conversion-From-Object#arrays

Basically you need something like:

var obj = {
    BACSDocument: {
      '@xmlns:xsi':'http://www.w3.org/2001/XMLSchema-instance',
      '@xsi:noNamespaceSchemaLocation': 'newbacs-advices.xsd',
      Data: {
        ARUDD: {
          Header:{
            '@reportType':'xxx',
            '@adviceNumber':'xxx',
            '@currentProcessingDate':'xxx',
          },
          AddresseeInformation: {
            '@name': 'xxx'
          },
          ServiceLicenseInformation: {
            '@userName': 'xxx',
            '@userNumber': 'xxx'
          },
          Advice: {
            OriginatingAccountRecords: {
              OriginatingAccountRecord: {
                OriginatingAccount: {
                  ReturnedDebitItem: [42, 42, 42]
                }
              }
            }
          }
        }
      }
    }
  };

  var root = builder.begin().ele(obj).end({pretty: true});

from xmlbuilder-js.

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.