主頁 > 知識庫 > 把無限級分類生成數(shù)組

把無限級分類生成數(shù)組

熱門標(biāo)簽:成都ai外呼系統(tǒng)線路 虛擬電話外呼系統(tǒng) 鄭州智能外呼電銷機(jī)器人廠家 云南便宜外呼系統(tǒng)平臺 鄢陵學(xué)校如何做地圖標(biāo)注 沈陽電話機(jī)器人公司 長春公司外呼系統(tǒng)中心 沈陽三五防封電銷卡 廣東語音外呼系統(tǒng)公司
把無限級分類循環(huán)出來確實(shí)是一件頭疼的事情。
比如,我們要循環(huán)出一個(gè)SELECT,或一個(gè)TABLE,要寫一大堆判斷。
有沒好點(diǎn)的辦法呢?
我的做法是生成數(shù)組,可以重復(fù)調(diào)用,直接循環(huán)數(shù)組就行了。
為了方便,我把它寫成了類。
class.asp
返回所有分類的數(shù)組,并按順序排列
有4個(gè)屬性:
復(fù)制代碼 代碼如下:
set aa=new classlist 
aa.id="id"http://編號的名稱 
aa.classname="classname"http://分類名稱 
aa.pid="pid"http://父ID名稱 
aa.db_name="class"http://表名 
list=aa.arrylist() 

復(fù)制代碼 代碼如下:

class classlist 
private c_id 
private c_db_name 
private c_pid 
private c_classname 
public property let id(str) 
   c_id = str 
end property 
public property let db_name(str) 
   c_db_name = str 
end property 
public property let pid(str) 
   c_pid = str 
end property 
public property let classname(str) 
   c_classname = str 
end property 
dim list() 
dim i,n 
Private Sub Class_Initialize()'初始化變量 
i=0 
n=0 
End Sub 
public function classarry(thisid,pid)'取得下級ID 
if pid>0 then 
sql="select * from "c_db_name" where "c_pid"="thisid 
else 
sql="select * from "c_db_name" where "c_id"="thisid 
end if 
set rs_c=conn.execute(sql) 
n=n+1 
do while not rs_c.eof 
list(0,i)=rs_c(c_id)'裝入數(shù)組中 
list(1,i)=rs_c(c_classname) 
list(2,i)=n 
'n=n+1 
i=i+1 
thisid=classarry(rs_c(c_id),1)'這里遞歸調(diào)用,直到最后一個(gè)子類 
rs_c.movenext 
loop 
n=n-1 
rs_c.close 
end function 
public function arrylist()'循環(huán)出所有根類 
set rs_c=conn.execute("select count("c_id") from "c_db_name) 
lenght=rs_c(0) 
rs_c.close 
redim list(2,lenght)'設(shè)置數(shù)組 
set rs1=conn.execute("select "c_id" from "c_db_name" where "c_pid"=0") 
do while not rs1.eof 
call classarry(rs1(c_id),0) 
'n=1 
rs1.movenext 
loop 
rs1.close 
arrylist=list 
end function 
end class 
%> 

實(shí)例測試:
表CLASS
字段
id:自動編號
classname:名稱
pid:父ID
test.asp
復(fù)制代碼 代碼如下:
!--#include file="class.asp"--> 

Set conn=Server.CreateObject("ADODB.connection") 
Set Rs = Server.CreateObject("ADODB.Recordset") 
StrDSN = "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" 
StrDSN = StrDSN  Server.MapPath("test.mdb") 
conn.Open strDSN 
function ins(num) 
str="" 
for ii=1 to num 
str=str"|-" 
next 
ins=str 
end function 
set aa=new classlist 
aa.id="id" 
aa.classname="classname" 
aa.pid="pid" 
aa.db_name="class" 
list=aa.arrylist() 
response.write "table border=1>tr>td>ID/td>td>名稱/td> td>第幾類/td>/tr>" 
for j=0 to ubound(list,2) 
response.write "tr>td>"list(0,j)"/td>td>"list(1,j)"/td>td>"list(2,j)"/td>/tr>" 
next 
response.write "/table>" 
'response.write list(1,3) 
%> 
select name=""> 
% for i=0 to ubound(list,2)%> 
option value="">% 
response.write ins(list(2,i)) 
response.write list(1,i)%>/option> 
%next%> 
/select> 
循環(huán)結(jié)果:
www.hubro.net/code/class/test.asp
基本上可以滿足一般的需要了!
您可能感興趣的文章:
  • php 無限級數(shù)據(jù)JSON格式及JS解析
  • asp.net(C#)生成無限級別菜單
  • php 無限級分類學(xué)習(xí)參考之對ecshop無限級分類的解析 帶詳細(xì)注釋
  • php 無限級 SelectTree 類
  • Asp.net 無限級分類實(shí)例代碼
  • asp飛飛無限級分類v1.0 Asp+sql+存儲過程+ajax提供下載
  • ajax+asp無限級分類樹型結(jié)構(gòu)的代碼
  • PHP+JS無限級可伸縮菜單詳解(簡單易懂)
  • php+mysql實(shí)現(xiàn)無限級分類 | 樹型顯示分類關(guān)系
  • asp實(shí)現(xiàn)無限級分類的方法js版
  • php實(shí)現(xiàn)無限級分類實(shí)現(xiàn)代碼(遞歸方法)
  • ASP 無限級分類實(shí)現(xiàn)

標(biāo)簽:孝感 遼陽 朝陽 湖北 四平 馬鞍山 平頂山 防城港

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《把無限級分類生成數(shù)組》,本文關(guān)鍵詞  把,無限,級,分類,生成,數(shù)組,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《把無限級分類生成數(shù)組》相關(guān)的同類信息!
  • 本頁收集關(guān)于把無限級分類生成數(shù)組的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章