Dwr轻松实现google的suggest功能

2024-02-16 01:18

本文主要是介绍Dwr轻松实现google的suggest功能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

今天将我正在进行开发的系统中注入了ajax的suggest功能,虽然不像我看的框架那样通用,但我感觉即简单又好用,我是将dwr框架引入程序中,在javascript中调用类方法查询到oracle数据库的数据,dwr真是快捷方便。下面是实现代码:
以下是SuggestControl.js
[code]
var arrOptions = new Array();
var strLastValue = "";
var bMadeRequest;
var theTextBox;
var objLastActive;
var currentValueSelected = -1;
var bNoResults = false;
var isTiming = false;
window.onload = function() {
var elemSpan = document.createElement("span");
elemSpan.id = "spanOutput";
elemSpan.className = "spanTextDropdown";
document.body.appendChild(elemSpan);
document.forms[0].consignOrgName.obj =
SetProperties(document.forms[0].consignOrgName,
document.forms[0].consignOrgValue,'',true,true,true,true,
"没有匹配的名称",false,true);
}
function SetProperties(xElem, xHidden, xserverCode, xignoreCase, xmatchAnywhere,
xmatchTextBoxWidth, xshowNoMatchMessage, xnoMatchingDataMessage, xuseTimeout,
xtheVisibleTime) {
var props = {
elem: xElem,
hidden: xHidden,
serverCode: xserverCode,
regExFlags: ((xignoreCase) ? "i" : ""),
regExAny: ((xmatchAnywhere) ? "^" : ""),
matchAnywhere: xmatchAnywhere,
matchTextBoxWidth: xmatchTextBoxWidth,
theVisibleTime: xtheVisibleTime,
showNoMatchMessage: xshowNoMatchMessage,
noMatchingDataMessage: xnoMatchingDataMessage,
useTimeout: xuseTimeout
};
AddHandler(xElem);
return props;
}
var isOpera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1);
function AddHandler(objText){
objText.onkeyup = GiveOptions;
objText.onblur = function(){
if(this.obj.useTimeout)StartTimeout();
}
if(isOpera)objText.onkeypress = GiveOptions;
}
function GiveOptions(e){
var inkey = -1;
if(window.event){
inkey = event.keyCode;
theTextBox = event.srcElement;
}
else{
inkey = e.which;
theTextBox = e.target;
}
if(theTextBox.obj.useTimeout){
if(isTiming)EraseTimeout();
StartTimeout();
}
if(theTextBox.value.length == 0 && !isOpera){
arrOptions = new Array();
HideTheBox();
strLastValue = "";
return false;
}
if(objLastActive == theTextBox){
if(inkey == 13){
GrabHighlighted();
theTextBox.blur();
return false;
}
else if(inkey == 38){
MoveHighlight(-1);
return false;
}
else if(inkey == 40){
MoveHighlight(1);
return false;
}
}
if(objLastActive != theTextBox ||
theTextBox.value.
indexOf(strLastValue) != 0 ||
((arrOptions.length == 0 ||
arrOptions.length == 15)
&& !bNoResults) ||
(theTextBox.value.length
<= strLastValue.length)){

objLastActive = theTextBox;
bMadeRequest = true;
TypeAhead(theTextBox.value);
}
else if(!bMadeRequest){
BuildList(theTextBox.value);
}
strLastValue = theTextBox.value;
}
function TypeAhead(xStrText) {
arrOptions = [];
GetData.getData(xStrText, BuildList);
bMadeRequest = false;
}
function CreateArray(ajaxResponse){
for(var index in ajaxResponse){

var newtext = ajaxResponse[index].fcname;
var newval = ajaxResponse[index].fcode;
arrOptions.push(new Array(newval,newtext));
}
}
function BuildList(theText){
CreateArray(theText);
SetElementPosition(theTextBox);

var theMatches = MakeMatches(strLastValue);
theMatches = theMatches.join().replace(/\,/gi,"");
if(theMatches.length > 0){
document.getElementById("spanOutput").innerHTML = theMatches;
document.getElementById("OptionsList_0").className = "spanHighElement";
currentValueSelected = 0;
bNoResults = false;
}
else{
currentValueSelected = -1;
bNoResults = true;
if(theTextBox.obj.showNoMatchMessage)
document.getElementById("spanOutput").innerHTML =
"<span class='noMatchData'>" + theTextBox.obj.noMatchingDataMessage + "</span>";
else
HideTheBox();
}
}
function SetElementPosition(theTextBoxInt){
var selectedPosX = 0;
var selectedPosY = 0;
var theElement = theTextBoxInt;
if(!theElement) return;
var theElemHeight = theElement.offsetHeight;
var theElemWidth = theElement.offsetWidth;
while(theElement != null){
selectedPosX += theElement.offsetLeft;
selectedPosY += theElement.offsetTop;
theElement = theElement.offsetParent;
}
xPosElement = document.getElementById("spanOutput");
xPosElement.style.left = selectedPosX;
if(theTextBoxInt.obj.matchTextBoxWidth)
xPosElement.style.width = theElemWidth;
xPosElement.style.top = selectedPosY + theElemHeight;
xPosElement.style.display = "block";
if(theTextBoxInt.obj.useTimeout){
xPosElement.onmouseout = StartTimeout;
xPosElement.onmouseover = EraseTimeout;
}
else{
xPosElement.onmouseout = null;
xPosElement.onmouseover = null;
}
}
var countForId = 0;
function MakeMatches(xCompareStr){
countForId = 0;
var theMatch;
var matchArray = new Array();
var regExp = new RegExp(theTextBox.obj.regExAny +
xCompareStr,theTextBox.obj.regExFlags);
for(i = 0; i < arrOptions.length; i++){
if(arrOptions[i][1] != null)
theMatch = arrOptions[i][1].match(regExp);
if(theMatch){
matchArray[matchArray.length]=
CreateUnderline(arrOptions[i][1],xCompareStr,i);
}
}
return matchArray;
}
function CreateUnderline(xStr,xTextMatch,xVal){
var undeStart = "<span class='spanMatchText'>";
var undeEnd = "</span>";
var aStart;
var matchedText;
var xreplace='';
var selectSpanStart = "<span style='width:100%;display:block;'class='spanNormalElement'
οnmοuseοver='SetHighColor(this)'";
var selectSpanEnd = "</span>";
selectSpanMid = "οnclick='SetText("+xVal+")'" +"id='OptionsList_" + countForId +
"' theArrayNumber='"+xVal+"'>";
var regExp = new RegExp(theTextBox.obj.regExAny +
xTextMatch,theTextBox.obj.regExFlags);
if(xStr != undefined){
aStart = xStr.search(regExp);
matchedText = xStr.substring(aStart,aStart + xTextMatch.length);
xreplace = xStr.replace(regExp,undeStart + matchedText + undeEnd);
countForId++;
}
return selectSpanStart + selectSpanMid + xreplace + selectSpanEnd;

}
function MoveHighlight(xDir){
if(currentValueSelected >= 0){
newValue = parseInt(currentValueSelected) + parseInt(xDir);
if(newValue > -1 && newValue < countForId){
currentValueSelected = newValue;
SetHighColor(null);
}
}
}
function SetHighColor(theTextBox){
if(theTextBox){
currentValueSelected =
theTextBox.id.slice(theTextBox.id.indexOf("_") + 1,
theTextBox.id.length);
}
for(i = 0; i < countForId; i ++){
document.getElementById('OptionsList_'+i).className =
'spanNormalElement';
}
document.getElementById('OptionsList_' +
currentValueSelected).className = 'spanHighElement';
}
function SetText(xVal){
theTextBox.value = arrOptions[xVal][1];
theTextBox.obj.hidden.value = arrOptions[xVal][0];
document.getElementById("spanOutput").style.display = "none";
currentValueSelected = -1;
}
function GrabHighlighted(){
if(currentValueSelected >= 0){
xVal = document.getElementById("OptionsList_" +
currentValueSelected).getAttribute("theArrayNumber");
SetText(xVal);
HideTheBox();
}
}
function HideTheBox(){
document.getElementById("spanOutput").style.display = "none";
currentValueSelected = -1;
EraseTimeout();
}
function EraseTimeout(){
clearTimeout(isTiming);
isTiming = false;
}
function StartTimeout(){
isTiming = setTimeout("HideTheBox()",theTextBox.obj.theVisiableTime);
}
[/code]
以下是class GetDate 及类方法,以获得要查询的数据
[code]
public GetData(){}

public List getData(String str){
List list = null;
Client cl = null;
try {
con = ConnectionHandler.getConnection("seaDataSource");
st = con.createStatement();
rs = st.executeQuery("select F_CODE,F_CNAME from view_collect where " +
"F_SHORT like '"+str+"%' and rownum <= 5");
while(rs.next()) {
cl = new Client();
cl.setFcode(rs.getString("F_CODE"));
cl.setFcname(rs.getString("F_CNAME"));
// System.out.println("---"+cl.getFcname());
if(list==null)list = new ArrayList();
list.add(cl);
cl = null;
}
} catch (Exception e) {
e.printStackTrace();
}finally {
try {
rs.close();
st.close();
con.close();
} catch (Exception e)
{e.printStackTrace();}
}
return list;
}
[/code]
以下是dwr.xml中的配置
[code]
<dwr>
<allow>
<create creator="new" javascript="GetData">
<param name="class" value="com.fmslite.seaexp.dao.GetData" />
</create>
<convert converter="bean" match="com.fmslite.seaexp.pojo.Client"/>
</allow>
</dwr>
//*********************以下是web.xml中的配置********************************//
<servlet>
<servlet-name>dwr-invoker</servlet-name>
<servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dwr-invoker</servlet-name>
<url-pattern>/dwr/*</url-pattern>
</servlet-mapping>
[/code]
以下是css的sheet文件
[code]
.span.spanTextDropdown {
position: absolute;
top: 0px;
left: 0px;
width: 150px;
z-index: 101;
background-color: #F6EEFF;
border: 1px solid #8E8DAA;
padding-left: 2px;
overflow: visible;
display: none;
font-size:8pt
}
.span.spanMatchText {
color:#B8B8FF;
font-weight: bold;
font-size:8pt
}
.span.spanNormalElement {
background: #F6EEFF;
font-size:8pt
}
.span.spanHighElement {
font-size:8pt;
background: #A2A1C5;
color: #FFFFFF;
cursor: pointer
}
.span.noMatchData {
font-weight: bold;
color: #0000ff;
font-size:8pt
}
[/code]
如能配置正确以上文件及路径,即可轻松实现Suggest的基本功能。

这篇关于Dwr轻松实现google的suggest功能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/713093

相关文章

Oracle查询优化之高效实现仅查询前10条记录的方法与实践

《Oracle查询优化之高效实现仅查询前10条记录的方法与实践》:本文主要介绍Oracle查询优化之高效实现仅查询前10条记录的相关资料,包括使用ROWNUM、ROW_NUMBER()函数、FET... 目录1. 使用 ROWNUM 查询2. 使用 ROW_NUMBER() 函数3. 使用 FETCH FI

Python脚本实现自动删除C盘临时文件夹

《Python脚本实现自动删除C盘临时文件夹》在日常使用电脑的过程中,临时文件夹往往会积累大量的无用数据,占用宝贵的磁盘空间,下面我们就来看看Python如何通过脚本实现自动删除C盘临时文件夹吧... 目录一、准备工作二、python脚本编写三、脚本解析四、运行脚本五、案例演示六、注意事项七、总结在日常使用

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

Java中Springboot集成Kafka实现消息发送和接收功能

《Java中Springboot集成Kafka实现消息发送和接收功能》Kafka是一个高吞吐量的分布式发布-订阅消息系统,主要用于处理大规模数据流,它由生产者、消费者、主题、分区和代理等组件构成,Ka... 目录一、Kafka 简介二、Kafka 功能三、POM依赖四、配置文件五、生产者六、消费者一、Kaf

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

windos server2022里的DFS配置的实现

《windosserver2022里的DFS配置的实现》DFS是WindowsServer操作系统提供的一种功能,用于在多台服务器上集中管理共享文件夹和文件的分布式存储解决方案,本文就来介绍一下wi... 目录什么是DFS?优势:应用场景:DFS配置步骤什么是DFS?DFS指的是分布式文件系统(Distr

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一