項目首頁是用cms實現的,現在首頁要改版,我們想將某些模塊內容(如列表)單獨分離出來成一個靜態頁面,然後像jsp中將頁面include進來,不知有沒有辦法完成?一句話概括就是:有沒有方法在用cms系統做的首頁中嵌入一個單獨的靜態頁面?謝謝。
#coding: utf8
import re
import xlrd
def get_excel():
###文件絕對路徑
xfile=r'D:\test\6yue.xlsx'
book=xlrd.open_workbook(xfile)
###打開第3個SHEET頁
table=book.sheets()[2]
###標識字典
b_list={}
biaoshi=''
###獲取行數和列數
nrows=table.nrows
ncols=table.ncols
###獲取標識頭
for i1 in range(ncols):
for j in table.col_values(i1):
b_list[i1]=j
break
###打印表頭
for i2 in b_list:
print i2,b_list[i2]
biaoshi=biaoshi+b_list[i2]+' '
###在列裡面進行查詢
chaxun1=int(raw_input(u'請輸入你要查詢的字段對應號(參照上圖):\n'))
chaxun_neirong=raw_input(u'請輸入你要查詢的字段內容:\n')
for i3 in table.col_values(chaxun1):
if re.search(chaxun_neirong,i3):
#for i in enumerate()
i3=re.search(chaxun_neirong,i3).group()
###判斷搜索數據在哪行並打印
print biaoshi
for k in range(nrows):
huajian=table.cell(k,chaxun1).value
if re.search(chaxun_neirong,huajian):
for m in table.row_values(k):
print m,
print '\n'
else:
pass
get_excel()