Search code examples
open-sourcelsfusion

lsFusion, how JSONFILE can be saved to the TEXT property?


Good afternoon everyone, has anyone had any experience with how JSONFILE can be saved to the TEXT property in lsFusion?

I couldn't find the right function


Solution

  • yes, you can

    INPUT f = JSONFILE DO { 
              LOCAL text = TEXT();
              text() <- TEXT(f);
              MESSAGE text();
     }