显示文本字段数据并更改数据库中的值

发布于 2024-07-27 19:34:18 字数 380 浏览 2 评论 0原文

我的数据库中有这个,

<input type="text" value="<%= account["accountname"] %>"/>

这将在我想要的字段中显示帐户名的值。

但是,如果我希望用户将该值更改为其他值,则不允许这种情况发生。

如果我用它代替上面的代码示例,

<%= text_field_tag :accountname, params[:accoutname] %>

这允许我更改值并更新数据库。 但是,该字段在用户的视图中保持空白。

我想知道是否有一种方法可以更改数据库并在视图中显示帐户名

I have this in my database

<input type="text" value="<%= account["accountname"] %>"/>

this will show the value of accountname in the field that I desire it too.

However, if I want the user to change that value to something else it doesn't allow that to occur.

If I put this in place of the above code sample

<%= text_field_tag :accountname, params[:accoutname] %>

This allows me to change the value and updates the database. However, the field stays blank in the views to the user.

I am wondering if there is a way for me to be able to change the database as well as display the accountname in the views

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

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

发布评论

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

评论(2

放手` 2024-08-03 19:34:18

您是否剪切并粘贴了这段代码? 如果是这样,那么你就有一个错字。

params[:accoutname]

:帐户名称

Did you cut-and-paste this code? If so, you have a typo.

params[:accoutname]

:accountname

生活了然无味 2024-08-03 19:34:18
<input type="text" name= "accountname" value="<%= account["accountname"] %>"/>

我需要添加名称字段来执行我想要的操作。

<input type="text" name= "accountname" value="<%= account["accountname"] %>"/>

I needed to add the name field to do what I wanted.

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