我有以下代码,它定义了一个 getParts 方法来在系统中查找给定的零件名称和零件编号。请注意,此代码来自我们系统的 API,因此如果没有人可以提供帮助,我将删除此问题。我认为有人可能会看到解决方案或一路帮助我。
<%! private QueryResult getParts( String name, String number )
throws WTException, WTPropertyVetoException {
Class cname = wt.part.WTPart.class;
QuerySpec qs = new QuerySpec(cname);
QueryResult qr = null;
qs.appendWhere
(new SearchCondition(cname,
"master>name",
SearchCondition.EQUAL,
name,
false));
qs.appendAnd();
qs.appendWhere
(new SearchCondition(cname,
"master>number",
SearchCondition.EQUAL,
number,
false));
qr = PersistenceHelper.manager.find(qs);
System.out.println("...found: " + qr.size());
return qr;
}
%>
但我想让用户更灵活地找到这些部件。所以我设置了条件语句来检查单选按钮。这允许他们按零件名称和零件编号搜索、查找全部或使用通配符进行搜索。但是,我在实施后两个选项时遇到了麻烦。
为了尝试完成上述操作,我编写了以下代码:
<%
String partName = request.getParameter("nameInput");
String partNumber = request.getParameter("numberInput");
String searchMethod = request.getParameter("selection");
//out.print(searchMethod);
QueryResult myResult = new QueryResult();
if(searchMethod.equals("search"))
myResult = getParts(partName, partNumber);
else if(searchMethod.equals("all"))
{
//Should I write a new function and do this?
//myResult = getAllParts();
//or is there a way I could use a for each loop to accomplish this?
}
//else if(searchMethod.equals("wildcard"))
//get parts matching %wildcard%
while(myResult.hasMoreElements())
{
out.print(myResult.nextElement().toString());
}
%>
基本上,它接受用户输入并检查他们想要执行的搜索类型。有没有一种简单的方法可以将所有值传递给 myResult 对象?同样对于通配符搜索?就像我之前说的,在没有访问 API 的情况下尝试提供帮助可能是徒劳的,但希望不是这样。
谢谢!