显示项目

发布于 2024-11-16 06:49:15 字数 159 浏览 5 评论 0原文

我正在创建我的第一个 apex 应用程序,并且我有一堆已填充的项目。我想将它们全部显示在页面上,只是为了验证是否存储了正确的值。

我创建了一个名为 params 的新区域,并且我想在该区域内显示项目。例如,我有以下项目:P1000_USERID,我想做的就是在页面上显示该值。我该怎么做?

I am creating my first apex application and I have a bunch of items which have been populated. I wanted to display them all on the page just to verify that the right values are being stored.

I have created a new region named params and within that region I want to display the items. For example I have the item :P1000_USERID all I want to do is display that value on the page. How do I do this?

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

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

发布评论

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

评论(1

等待圉鍢 2024-11-23 06:49:15

您有多种选择,包括:

  1. 您可以将项目类型设置为“隐藏”以外的其他类型,并确保它不存在阻止其呈现的条件。
  2. 您可以使用如下文本在区域正文中显示项目值:
    P1000_USERID = &P1000_USERID。
    例如这个区域定义:
    区域定义

    显示:

You have various options, including:

  1. You could set the item type to something other than Hidden and ensure that it doesn't have a condition to prevent it being rendered.
  2. You could display the item values in the region body with text like:
    P1000_USERID = &P1000_USERID.
    For example this region definition:
    Region definition

    shows:

Region rendered

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