摘要:
'accept_charsets','accept_encodings','accept_languages','accept_mimetypes','access_route','application','args','authorization','base_url','blueprint',... 阅读全文
摘要:
1.判断undefined:Js代码vartmp=undefined;if(typeof(tmp)=="undefined"){alert("undefined");}说明:typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"func... 阅读全文
摘要:
QDateTimeEdit/QDateEditclear (self)QDate date (self)QDateTime dateTime (self)setDate (self, QDate date)setDateTime (self, QDateTime dateTime)setTime (... 阅读全文
摘要:
经常有人问到如何在一个主窗口中打开一个对话框,然后在确认对话框之后,开启另一个窗口进行后续操作,要求主窗口和最终的窗口之间都能响应用户操作,也就是非模态窗口。随手写了几行代码,简要示意。:::python#!/usr/bin/python# -*- coding: utf-8 -*-# Gui (i... 阅读全文
摘要:
QComboBoxaddItem (self, QString text, QVariant userData = QVariant())addItem (self, QIcon icon, QString text, QVariant userData = QVariant())addItems ... 阅读全文
摘要:
QWidgetbool close (self)QRect geometry (self)hide (self)int height (self)setStatusTip (self, QString)setWindowIcon (self, QIcon icon)setWindowTitle (s... 阅读全文
摘要:
1. 使用base64s1 = base64.encodestring('hello world')s2 = base64.decodestring(s1)print s1, s2结果12aGVsbG8gd29ybGQ=hello worldBase64编码,64指A-Z、a-z、0-9、+和/这6... 阅读全文
摘要:
python编码问题:'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)这种问题有三种原因:第一个是文件的编码采用的是ANSI格式编码,这时候改变编码方式为以UTF-8无BOM格式编码(使用not... 阅读全文
摘要:
Node1:#ssh-keygen-trsa这一步是生成密钥#ssh-copy-id-i~/.ssh/id_rsa.pubroot@node2.xueping365.com~/.ssh/id_rsa.pub是密钥得得绝对路径,root@node2.xueping365.com是目的地址Node2:#... 阅读全文