gpt4 book ai didi

oop - 似乎无法完全理解 textInput 如何在 super 简单的网站上工作

转载 作者:行者123 更新时间:2023-12-05 09:13:41 25 4
gpt4 key购买 nike

所以基本上我需要做的就是将“用户”对象添加到 OrderedCollection。

我只需要从用户那里获取用户名和密码。

单击提交按钮后,我需要将用户添加到集合中并返回主页(我想这可以通过调用#answer 来完成)。

阅读关于 textInput 的海滨书籍的 99 倍,但我无法理解提交表单后数据存储在哪里。

非常感谢任何情报。

这是我当前的表格:

html form: [ 
html text: 'Username: '.
html textInput
callback: [ ];
value: 'Enter username here'.
html break.
html text: 'Password: '.
html textInput
callback: [ ];
value: 'Enter password here'.
html break.
html submitButton
callback: [ ];
value: 'Add user']

最佳答案

如果你把这本书读了 99 遍,那么你就没有读过表单的代码示例。 http://book.seaside.st/book/fundamentals/forms/textinputfieldsContactView的例子中甚至直接给出了你的例子

在您的代码中,文本输入字段的回调是空的(即没有代码)。在提交表单时,Seaside 使用在文本字段中输入的值调用这些回调。最后,它将调用提交按钮回调。

您的代码可以是:

| user pass |
html form: [
html text: 'Username: '.
html textInput
callback: [:userValue | user := userValue ];
value: 'Enter username here'.
html break.
html text: 'Password: '.
html textInput
callback: [:passValue | pass := passValue ];
value: 'Enter password here'.
html break.
html submitButton
callback: [ self addUser: user withPassword: pass ];
value: 'Add user']

关于oop - 似乎无法完全理解 textInput 如何在 super 简单的网站上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55602908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com