Pricing Blog

Connecting our Nordcraft-App to Xano-backend passes Nan instead of variable

  • yung_novalis-1388526177886404668

    yung_novalis

    18 days ago

    The 6 is not being properly bound to the request path. But why?
    1388526178297581798-e6345f64-46d4-4c29-97a2-520643f17e8c.png
  • yung_novalis-1388527016944599191

    yung_novalis

    18 days ago

    this is our db model btw
    1388527016650870885-9d83f363-a086-4d63-8654-398c2ab0d267.png
  • yung_novalis-1388528481419264051

    yung_novalis

    18 days ago

    so everything works separately, the db call (if you enter a number), extracting the number from the url, just using both doesn't work, my only explanation is that although it says it's a number it's not a number
  • andreasmoller-1388598856882716733

    Andreas Møller

    18 days ago

    That looks very strange. Can you help me reproduce? I cant find any issue with using numbers as part of the URL
  • yung_novalis-1388600489867743352

    yung_novalis

    18 days ago

    hello! we somehow figured it out. thx tho!
  • Tod-1388600492002644189

    Tod

    18 days ago

    Great job @yung_novalis! Your contribution to the Nordcraft Community just made you advance to Community Level 1! 🌲
  • andreasmoller-1388601107185405982

    Andreas Møller

    18 days ago

    Oh great! So it was not a Nordcraft problem?
  • nocodeprocode-1388686047889850459

    NoCode ProCode

    18 days ago

    If you add a number in Xano URL it won’t be data type number - but a string and the internal filter will fail 🙂
  • andreasmoller-1388775676852568104

    Andreas Møller

    18 days ago

    So they don’t parse it automatically?
  • nocodeprocode-1388788353939537950

    NoCode ProCode

    18 days ago

    Not in url as it could also be text. There are some cases where you want the 5 to be “5” and if it’s in the url it’s a string unless it’s a table reference for a DB table - depends on the setup. They should, but if you don’t do it correctly you can have it go through as a string 😊
  • andreasmoller-1388788652435570820

    Andreas Møller

    18 days ago

    Ah