我正在使用" tawk chat"为我的WordPress网站。 聊天框在加载时隐藏,我在点击"打开聊天"时使用以下代码打开聊天框。它工作得非常好但是当我最小化它时,聊天框就会消失。 当用户点击最小化时,我希望聊天框最小化。
#Function to write excel from Oracle Cursor
def writeToExcel(cur_sor, targetDir, export_file_name):
Actual_Path = os.path.join(targetDir, export_file_name)
#Array to capture Date type columns
DateTimeColumns = []
print('\t\t\t writing: '+export_file_name+'\t\t\t\t'+str(datetime.datetime.now()))
workbook = xlsxwriter.Workbook(Actual_Path) # Create Excel Object for new workbook
worksheet = workbook.add_worksheet(sourceSYS) # Add a New Worksheet Name - scott_schema
row = 0
col = 0
for i in range(len(cur_sor.description)):
desc = cur_sor.description[i]
#Only Data Type column will be capture
if format(desc[1])== "<class 'cx_Oracle.TIMESTAMP'>":
DateTimeColumns.append(i)
bold = workbook.add_format({'bold': True})
date_format = workbook.add_format({'num_format': 'dd/mm/yy'})
worksheet.write(row, (col + i), format(desc[0]), bold) # Iterate for column headers
date_format = workbook.add_format({'num_format': 'dd/mm/yy'})
color_format = workbook.add_format()
color_format.set_font_color('red')
row = row + 1
#Loop for each row, return by database cursor
for tupple_row in cur_sor:
col = 0
#Loop for each column, for particular row open in level-up cursor
for list_item in tupple_row:
#If column position matches with datetype column position
if col in DateTimeColumns:
#Check if the cell value is date type, additional check to handle "None" (blank date cell)
if isinstance(list_item, datetime.date) or isinstance(list_item, datetime.datetime) \
or isinstance(list_item, datetime.time) or isinstance(list_item, datetime.timedelta):
#Format the date, inorder to save as date rather number
worksheet.write(row, col, list_item.strftime("%Y-%b-%d %H:%M:%S.%f"))
else:
worksheet.write(row, col, list_item)
col = col + 1
row = row + 1
workbook.close()
答案 0 :(得分:1)
这不是程序性问题。
https://www.tawk.to/knowledgebase/chat-widget/change-how-the-widget-behaves-on-your-site/