Web Flow 中的 Grails 属性表达式而不是域对象?

发布于 2024-11-14 23:42:59 字数 358 浏览 6 评论 0原文

我们目前正在尝试使用 Grails Web Flows 构建一些东西。

我们正在 Flow 中设置一个对象(使用 flow.objectName = objectInstance),但是当我们尝试在 Flow 的下一步中访问它(使用 flow.objectName)时,该 Object 并未设置,而是有一个 org .codehaus.groovy....PropertyExpression,它没有我们想要使用的方法。

我们用来设置和获取的代码在其他情况下也有效,我们找不到任何差异。

  • 什么是属性表达式?
  • 我们做错了什么,Webflows 经常发生的任何线索或问题吗?

预先感谢您抽出时间。

We are currently trying to build some stuff with Grails Web Flows.

We are setting an object in the Flow (using flow.objectName = objectInstance), but when we try to access it in the next step of the Flow (using flow.objectName), the Object is not set, but instead there is a org.codehaus.groovy..... .PropertyExpression, that has none of the methods we want to use.

The Code we used to set and get works in other cases, and we cannot find any differences.

  • What is a Property Expression?
  • What are we doing wrong, any clues or Problems that happen often with Webflows?

Thank you in advance for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-11-21 23:42:59

确保您的 Webflow DSL 语法正确。

例如

def someFlow = {
    eventAction {
       flow.value = someValue // This is incorrect
       action {
           flow.value = someValue // This is correct
       }
       on("success").to "eventDisplay"
    }

    eventDisplay {
       on("finish").to "end"
       flow.anotherValue = somethingElse // This usually causes the behavior you are seeing.
       // Proper way of setting flow.anotherValue
       on("finish2") {
           flow.anotherValue = somethingElse
       }.to "end"

    }

    end{}
}

Make sure your Webflow DSL syntax is correct.

For example

def someFlow = {
    eventAction {
       flow.value = someValue // This is incorrect
       action {
           flow.value = someValue // This is correct
       }
       on("success").to "eventDisplay"
    }

    eventDisplay {
       on("finish").to "end"
       flow.anotherValue = somethingElse // This usually causes the behavior you are seeing.
       // Proper way of setting flow.anotherValue
       on("finish2") {
           flow.anotherValue = somethingElse
       }.to "end"

    }

    end{}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文