我有一个大的“订购单”XPage,显示99行,每行有3个文本输入框。 为了捕获更改,我在每个输入框的'onchange'事件中调用了一个SSJS函数。 该呼叫只是发送产品ID,更改类型(哪一列)和数量。 然后,SSJS函数会在sessionScope变量(java.util.HashMap)中保留这些更改。 没有与更改相关的刷新。
当用户点击“提交”按钮时,将对这些更改进行整体处理。 这是另一个SSJS函数,它只是将所有更改写入后端Domino数据库。
这一切看起来都很好并且已经完成了几年。 但是,似乎我的用户对应用程序的效率变得越来越高,打字速度也超过了它的速度。
我的调试代码将每个更改写入服务器的控制台,如果用户快速连续更改(他们只是在输入框之间切换),我可以看到一些更改被忽略的地方。这几乎就像服务器忙于处理先前的更改并跳过一个转移到另一个更改。有时,错过了整个更改块,然后应用程序会在可能的情况下重新启动。
我是否使用错误的技术来捕捉变化?我可以做些什么来确保应用程序每次都启动onchange事件吗?
我使用IE8 / 9& amp; FF24。 我已经查看了其他建议使用'onkeyup'事件的帖子。我认为这不适用于我的情况,因为用户可能会订购两位数的数量。
感谢任何/所有建议!
答案 0 :(得分:3)
特里, 你需要重新审视这个架构。如果在提交时处理更新,为什么还要单独将它们发送到服务器 - 正如Tim很好地指出的那样。我会做什么:
非常激动的轮廓,请告诉我你是否需要我详细说明。 Java Collections Framework是您的朋友。
比看起来容易:
public class LineItem {
private String unid;
private String partno;
private int quantity;
private long unitprice;
/**
* Constructor for new items
*/
public LineItem() {
this.unid = null;
}
/**
* Constructor for existing items
*/
public LineItem(Document doc) {
this.unid = doc.getUniversalId();
// more here
}
/**
* @return the unid
*/
public String getUnid() {
return this.unid;
}
/**
* @return the partno
*/
public String getPartno() {
return this.partno;
}
/**
* @param partno the partno to set
*/
public void setPartno(String partno) {
this.partno = partno;
}
/**
* @return the quantity
*/
public int getQuantity() {
return this.quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(int quantity) {
this.quantity = quantity;
}
/**
* @return the unitprice
*/
public long getUnitprice() {
return this.unitprice;
}
/**
* @param unitprice the unitprice to set
*/
public void setUnitprice(long unitprice) {
this.unitprice = unitprice;
}
public void save(Database db) {
Document doc = null;
if (this.unid == null) {
doc = db.createDocument();
doc.replaceItem("Form", "LineItem");
}
doc.replaceItem("PartNo", this.partno);
// More here
doc.save();
}
}
和订单 - 假设您从文档集合加载。
public class Order implements Map<String, LineItem> {
// You might want to have a stack here to keep order
private final Map<String, LineItem> backingMap = new LinkedHashMap<String, LineItem>();
private final Set<String> deletedItemKeys = new HashSet<String>();
// The key we use for new items when unid is null
private int lastNewItemNumber = 0;
@Override
public int size() {
return this.backingMap.size();
}
@Override
public boolean isEmpty() {
return this.backingMap.isEmpty();
}
@Override
public boolean containsKey(Object key) {
return this.backingMap.containsKey(key);
}
@Override
public boolean containsValue(Object value) {
return this.backingMap.containsValue(value);
}
@Override
public LineItem get(Object key) {
return this.backingMap.get(key);
}
@Override
public LineItem put(String key, LineItem value) {
// Here it gets a little special
// We need to prevent null keys
if (key == null) {
key = String.valueOf(this.lastNewItemNumber);
lastNewItemNumber++;
}
this.deletedItemKeys.remove(key);
return this.backingMap.put(key, value);
}
@Override
public LineItem remove(Object key) {
this.deletedItemKeys.add(key.toString());
return this.backingMap.remove(key);
}
@Override
public void putAll(Map<? extends String, ? extends LineItem> m) {
for (Map.Entry<? extends String, ? extends LineItem> me : m.entrySet()) {
this.put(me.getKey(), me.getValue());
}
}
@Override
public void clear() {
this.deletedItemKeys.addAll(this.backingMap.keySet());
this.backingMap.clear();
}
@Override
public Set<String> keySet() {
return this.backingMap.keySet();
}
@Override
public Collection<LineItem> values() {
return this.backingMap.values();
}
@Override
public Set<java.util.Map.Entry<String, LineItem>> entrySet() {
return this.backingMap.entrySet();
}
public void load(NotesDocumentCollection dc) throws NotesException {
Document doc = dc.getFirstDocument();
Document nextDoc;
while (doc != null) {
nextDoc = dc.getNextDocument(doc);
LineItem li = new LineItem(doc);
this.put(doc.getUniversalId(), li);
doc.recycle();
doc = nextDoc;
}
doc.recyle();
}
public void save(Database db) {
for (LineItem item : this.backingMap.values()) {
item.save(db);
}
// Now kill the left overs - needs error handling
for (String morituri : this.deletedItemKeys) {
Document delDoc = db.getDocumentByUnid(morituri);
if (delDoc != null) {
delDoc.remove(true);
}
}
}
}