从 HTML 表中选择一行并编辑/删除它

发布于 2024-10-18 07:42:08 字数 278 浏览 3 评论 0原文

我已经为 MySQL 数据库中的文件创建了一个 html 表(使用 TG2.1 和 mako)。 现在我想通过在表中选择该行来提供“编辑/删除”特定行(记录)。

请注意,我没有使用 SQLAlchemy,因为我自己更喜欢 SQL 查询生成。我直接使用 MySQLdb 并执行查询、获取结果集等。

我检查了 TG 2.1 的文档,其中展示了如何使用 Sprox 库编辑 Wiki 页面。 但我没有数据模型,所以我想我不能使用Sprox。

有没有其他方法来“识别用户选择的行”和“提供编辑它的界面”

I have created a html table (using TG2.1 with mako) for a file from MySQL db.
Now I would like to provide for "Edit / Delete" a particular row (record), by selecting that row in table.

Note that I am not using SQLAlchemy, since I am more comfortable with SQL query-generation myself. I am directly using MySQLdb and executing queries, fetching resultset, etc.

I checked the docs of TG 2.1, which shows how to edit a Wiki Page by using Sprox library.
But I do not have a data-model, so I think I can't use Sprox.

Is there any other way to "identify the row selected by user" and "give an interface for editing it"

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

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

发布评论

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

评论(1

日暮斜阳 2024-10-25 07:42:08

因此,当我在模板代码中输出表行时,我还会输出一个要编辑的链接和一个要删除对象的链接(或按钮!),并在 url 字符串中指定 ID。

创建一个类似于

/things/edit/2

为记录 id 2

的 URL 。然后在控制器中创建一个编辑方法。它将采用两个参数:第一个是 self(当然),第二个是您在上面传递的 ID(在本例中为 2)。

So, when I'm outputting the table row in my template code I would also output a link to edit, and a link (or button!) to delete the object, specifying the ID in the url string.

Creating a URL that looks like

/things/edit/2

for record id 2.

Then create an edit method in your controller. It will take two parameters: the first being self (of course), and the second being the ID you passed up above (2, in this case).

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