最近在做一个ASP+ACCESS的企业小站,因为有中文、英文版分开不同空间不同域名的需求。原构想用AJAX做异步查询相关质保数据,但上线了才发现新网的虚拟空间不支持AJAX异步,咨询客服后也没有效的方法。后来想到:远程JS应该是每天的,把数组做成JS的数据,再做数据组的展示,也能达到异步查询的功能。
一、生成JS数组的ASP代码
<% Response.Charset="gbk" %>
<% Session.CodePage=936 %>
<!--#include file="inc/Conn.asp"-->
let zbarr = [
<%
typer=Request("qtyper")
key=Request("key")If typer<>"" and key<>"" ThenSet rs=server.createobject("adodb.recordset")sql="select * from table1 where 1=1"if typer="1" thensql=sql&" and cjhm='"&Ucase(key)&"'"elseif typer="2" thensql=sql&" and cphm='"&Ucase(key)&"'"elseif typer="3" thensql=sql&" and mjhm='"&Ucase(key)&"'"elseif typer="4" thensql=sql&" and czdh='"&Ucase(key)&"'"elsesql=sql&" and cjhm='"&Ucase(key)&"'"end if sql=sql&" order by id desc"rs.open sql,conn,1,1i=0do while not rs.eofv_enddate=rs("enddate")If rs("appflag")="1" Thenif len(v_enddate)=10 and isdate(v_enddate) ThenIf DateDiff("d", Year(Now)&"-"&Month(Now)&"-"&Day(Now), v_enddate)<0 thenstauts="<font color=#ff6666>Expired</font>"Elsestauts="<font color=green>Valid</font>"End Ifelse stauts="<font color=red>Pending approval</font>"end ifElsestauts="<font color=red>Pending approval</font>"End IfIf trim(rs("url"))>"" Or trim(rs("url1"))>"" Or trim(rs("url2"))>"" Or trim(rs("url3"))>"" Or trim(rs("url4"))>"" Or trim(rs("url5"))>"" ThenIf trim(rs("url"))>"" Then zburl=rs("remark")&"<br><img src='https://www.xxxxx.cn"&rs("url")&"' /><br>" End IfIf trim(rs("url1"))>"" Then zburl1=rs("remark1")&"<br><img src='https://www.xxxxx.cn"&rs("url1")&"' /><br>" End IfIf trim(rs("url2"))>"" Then zburl2=rs("remark2")&"<br><img src='https://www.xxxxx.cn"&rs("url2")&"' /><br>" End IfIf trim(rs("url3"))>"" Then zburl3=rs("remark3")&"<br><img src='https://www.xxxxx.cn"&rs("url3")&"' /><br>" End IfIf trim(rs("url4"))>"" Then zburl4=rs("remark4")&"<br><img src='https://www.xxxxx.cn"&rs("url4")&"' /><br>" End IfIf trim(rs("url5"))>"" Then zburl5=rs("remark5")&"<br><img src='https://www.xxxxx.cn"&rs("url5")&"' />" End IfEnd If%>{czdh:"<%= rs("czdh") %>",cphm:"<%= rs("cphm") %>", cjhm:"<%= rs("cjhm") %>",mjhm:"<%= rs("mjhm") %>",dmmc:"<%= rs("dmmc") %>",czdate:"<%= rs("czdate") %>",enddate:"<%= rs("enddate") %>",zbdh:"<%= rs("zbdh") %>",fwms:"<%= rs("fwms") %>",stauts:"<%= stauts %>",zburl:"<%= zburl %>",zburl1:"<%= zburl1 %>",zburl2:"<%= zburl2 %>",zburl3:"<%= zburl3 %>",zburl4:"<%= zburl4 %>",zburl5:"<%= zburl5 %>"},<% i=i+1 rs.movenext loop rs.closeset rs=nothing
End If
%>
];
二、展示JS数组数据的写法
<div class="pageContent" id="zblist"></div><SCRIPT src="js/jquery-1.11.3.min.js?rd=<%=currentDateTime %>"></SCRIPT>
<script src="https://www.xxxx.cn/yc_xxx_js.asp?qtyper=<%=typer %>&key=<%=key %>&rd=<%=currentDateTime %>"></script>
<script language="JavaScript" type="text/JavaScript">
$(function() {var discount = $('#zblist');//要展示的层IDvar arrText = [];var counti=0;var htmlContent = discount.html();// 使用for循环遍历数组for (let i = 0; i < zbarr.length; i++) {let zbinfo = zbarr[i];arrText.push('<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">');arrText.push('<tr><td width="30%" class="zbtitle">License plate number:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.cphm +'</td></tr>');arrText.push('<tr><td class="zbtitle">Frame number:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.cjhm +'</td></tr>');arrText.push('<tr><td class="zbtitle">Membrane roll number:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.mjhm +'</td></tr>');arrText.push('<tr><td class="zbtitle">Name of the store:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.dmmc +'</td></tr>');arrText.push('<tr><td class="zbtitle">Date of operation:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.czdate +'</td></tr>');arrText.push('<tr><td class="zbtitle">Termination date:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.enddate +'</td></tr>');arrText.push('<tr><td class="zbtitle">Warranty policy number:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.zbdh +'</td></tr>');arrText.push('<tr><td class="zbtitle">Service description:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.fwms +'</td></tr>');arrText.push('<tr><td class="zbtitle">Service status:</td><td style="padding-left:5px;text-align:left">'+ zbinfo.stauts +'</td></tr>');if(zbinfo.zburl != "") {arrText.push('<tr><td colspan="2" class="zbcont">'+ zbinfo.zburl + zbinfo.zburl1 + zbinfo.zburl2 + zbinfo.zburl3 + zbinfo.zburl4 + zbinfo.zburl5 +'</td></tr>');}arrText.push('</table>');arrText.push('<p> </p>');counti++;}//如果远程有数据,清空当前无数据字样if(counti>0 && htmlContent.indexOf("No relevant records") !==-1){discount.html('');}discount.append(arrText.join(''));
})
</script>
希望对你有帮助!点个赞就是最大的动力!