将结构传递给函数会产生嵌套结构

发布于 2025-01-08 15:02:53 字数 415 浏览 0 评论 0原文

当我将结构传递给需要结构的函数时,该函数会嵌套在另一个结构中。

例如:

function getAnswerFromSO(struct question=StructNew()) {
   writeDump(arguments.question);
}

调用getAnswerFromSO(question=myStruct); 会导致

question {
  myStruct = {
     text = 'foo',
     subj = 'bar',
     user = 1 }
};

** 显然,这不是cfdump 输出的样子,但它同样说明了问题。

有没有办法防止这种嵌套?

When I pass a struct to a function that is expecting a struct, the function is nested inside another struct.

For example:

function getAnswerFromSO(struct question=StructNew()) {
   writeDump(arguments.question);
}

CallinggetAnswerFromSO(question=myStruct); results in

question {
  myStruct = {
     text = 'foo',
     subj = 'bar',
     user = 1 }
};

** Obviously, this is not what a cfdump output looks like, but it illustrates the issue just the same.

Is there a way to prevent this nesting?

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

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

发布评论

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

评论(1

叶落知秋 2025-01-15 15:02:53

我可以确认 Ray 的示例也适用于 CF9。

I can confirm that Ray's example works on CF9 as well.

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