如何在同一控制器方法/视图中多次使用隐藏值?

发布于 2024-08-06 10:07:44 字数 1209 浏览 2 评论 0原文

我有一个列出目录的方法,您可以在目录中钻取。该方法如下所示:

           public ActionResult ListObjects(string Prefix)
           {
             if(string.isnullorempty(Prefix))
                //Present root files and directories
             else
                //Present directory choosed with Prefix
           }

在视图 ListObjects 上,我遇到前缀隐藏字段在第一次具有值后不更改值的情况。我通过添加额外的字段证明了这一点,该字段在第一次拥有该字段后确实会更改该值。例如:第一次处理listobjects方法前缀为null,而item.prefix对每个目录都有第一个值,但是在第一个视图中单击任何目录后,第二次调用控制器时实际值永远不会变化。

                <%= Html.Hidden("Prefix",item.Prefix) %>
                <%= Html.Hidden("TestVariable" ,item.Prefix) %>

这是实际发生的事情的一个小证明。

   <input id="Prefix" type="hidden" value="CP/" name="Prefix"/>
   <input id="TestVariable" type="hidden" value="CP/CPTest/" name="TestVariable"/>

我的目标是让输入 id="Prefix" 在每次调用中都发生变化,而不是在第一次获取值后保持静态。正如您所看到的,前缀上方的两个输入字段具有 CP,而 test 变量具有 cp/cptest,这是我想要的值,但两个输入字段均取自同一变量。

编辑2:

我认为这与字符串是引用这一事实有关,并且由于 mvc 框架看到 Prefix 具有来自先前请求的值,因此它会覆盖 model.Prefix 中的新值分配。


注意:我昨天发布了这个问题,在进行了一些故障排除后我自己回答了这个问题。我找到的解决方案并不理想,但正在发挥作用,并且我已经完成了,除非这里有人能够为我提供更好的方法来实现相同的目标。请告诉我。地理

I have a method that list listing directories and you can drill in the directories. The method looks like this:

           public ActionResult ListObjects(string Prefix)
           {
             if(string.isnullorempty(Prefix))
                //Present root files and directories
             else
                //Present directory choosed with Prefix
           }

On the view ListObjects, I am experiencing the Prefix hidden field not changing value after the first time it has a value. I proofed that by adding and extra field that does changes the value after the first time it has one. for example: the first time you process the listobjects method prefix is null, and item.prefix has the first value for each directory, but after you click on any directory in the first view, the second time the controller is called the actual value never changes.

                <%= Html.Hidden("Prefix",item.Prefix) %>
                <%= Html.Hidden("TestVariable" ,item.Prefix) %>

This is a little proof of what is actually happening.

   <input id="Prefix" type="hidden" value="CP/" name="Prefix"/>
   <input id="TestVariable" type="hidden" value="CP/CPTest/" name="TestVariable"/>

My objective is to have the input id="Prefix" to change in every call, and not stay static after the first time it gets a value. As you can see the two input fields above the Prefix has CP while the testvariable has cp/cptest which is the value that I wanted, but both input fields are being taken from the same variable.

EDIT 2:

I think it has to do with the fact that strings are references and since mvc framework sees that Prefix has a value from a previous request it overrides the new value assignment from model.Prefix.


NOTE: I posted the question yesterday, and I answer the question myself after a little troubleshooting. The solution that I found is not the ideal, but is working and I am done unless someone here is able to give me a better way of achieving the same. Please let me know. Geo

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

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

发布评论

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

评论(2

清旖 2024-08-13 10:07:44

也许是因为第二次处理列表对象时,您的标志既不为空也不为空。您将在第一次调用中更改对象的状态。

Maybe because the second time you're processing the listobjects your flag is not null nor empty. You're changing the state of the object in the first call.

没企图 2024-08-13 10:07:44

我确信这不是理想的解决方案,但我通过不使用 MVC 帮助程序文件解决了我的问题。我没有使用 Html.Hidden 帮助器,而是直接使用输入字段,如下所示:

  <%--<%= Html.Hidden("Prefix",item.Prefix) %>--%>                
  <input id="Prefix" type="hidden" value="<%= item.Prefix %>" name="Prefix" />  

这就像一个魅力,如果您想到 html.Hidden 不起作用的原因,请告诉我。

I am sure this is not the ideal solution, but I got around my issue by not using the MVC helper files. Instead of using the Html.Hidden helper I used directly the input field as below:

  <%--<%= Html.Hidden("Prefix",item.Prefix) %>--%>                
  <input id="Prefix" type="hidden" value="<%= item.Prefix %>" name="Prefix" />  

This works like a charm, if you think of a reason why the html.Hidden is not working please let me know.

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