是否有任何方法可以通过freemarker中的键值访问json
值? json看起来像这样:
{"className":"Lorem Ipsum","classPK":"52293","title":"Test Name"}
我需要这些值才能在方法中使用它们:
localService.method(className, classPK);
我正在尝试使用${json.getData()["classPK"]}
直接访问它们。怎么做?
${variableName.key}
使用。在您的情况下,<#assign data="Your JSON Goes here">
然后使用${data.className}
访问。 有关更多信息,请访问以下链接:-https://docs.akana.com/ag/processes/process_transform_freemarker.htmhttps://liferay.dev/blogs/-/blogs/working-with-json-in-freemarker