在不点击每个条目的情况下更新事物列表

Update a list of things without hitting every entry(在不点击每个条目的情况下更新事物列表)
本文介绍了在不点击每个条目的情况下更新事物列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在数据库中有一个用户应该能够订购的列表.

I have a list in a database that the user should be able to order.

itemname|  order value (int)
--------+---------------------         
salad   |  1
mango   |  2
orange  |  3
apples  |  4

从数据库加载时,我只是按 order_value 排序.

On load from the database, I simply order by order_value.

通过拖放,他应该能够移动apples,使其出现在列表顶部..

By drag 'n drop, he should be able to move apples so that it appears at the top of the list..

itemname|  order value (int)
--------+---------------------         
apples  |  4
salad   |  1
mango   |  2
orange  |  3

好的.所以现在在内部我必须更新每个列表项!如果列表有 20 或 100 个项目,那么对于简单的拖动操作来说就需要很多更新.

Ok. So now internally I have to update EVERY LIST ITEM! If the list has 20 or 100 items, that's a lot of updates for a simple drag operation.

itemname|  order value (int)
--------+---------------------         
apples  |  1
salad   |  2
mango   |  3
orange  |  4

我宁愿只更新一次.我想到的一种方法是内部订单"是否是 double 值.

I'd rather do it with only one update. One way I thought of is if "internal Order" is a double value.

itemname|  order value (double)
--------+---------------------         
salad   |  1.0
mango   |  2.0
orange  |  3.0
apples  |  4.0

所以在拖放操作之后,我指定 apples 的值小于它要出现在前面的项目:

SO after the drag n' drop operation, I assign apples has a value that is less than the item it is to appear in front of:

itemname|  order value (double)
--------+---------------------         
apples  |  0.5
salad   |  1.0
mango   |  2.0
orange  |  3.0

.. 如果一个项目被拖到中间某处,它的 order_value 比它之后出现的那个大.. 这里我将 orange 移动到 <代码>沙拉芒果:

.. and if an item is dragged into the middle somewhere, its order_value is bigger than the one it appears after .. here I moved orange to be between salad and mango:

itemname|  order value (double)
--------+---------------------         
apples  |  0.5
salad   |  1.0
orange  |  1.5
mango   |  2.0

对更好的方法有什么想法吗?

Any thoughts on better ways to do this?

推荐答案

我最终使用了一个 邻接表.我当时并不知道.

I ended up using an adjacencies table. I didn't know about it at the time.

这篇关于在不点击每个条目的情况下更新事物列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)