侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

python3+PyQt5 使用三种不同的简便项窗口部件显示数据的方法

Python  /  管理员 发布于 7年前   251

本文通过将同一个数据集在三种不同的简便项窗口部件中显示。三个窗口的数据得到实时的同步,数据和视图分离。当添加或删除数据行,三个不同的视图均保持同步。数据将保存在本地文件中,而非数据库。对于小型和临时性数据集来说,这些简便窗口部件非常有用,可以用在非单独数据集中-数据自身的显示,编辑和存储。

所使用的数据集:

/home/yrd/eric_workspace/chap14/ships_conv/ships.py

#!/usr/bin/env python3import platformfrom PyQt5.QtCore import QDataStream, QFile,QIODevice,Qtfrom PyQt5.QtWidgets import QApplicationNAME, OWNER, COUNTRY, DESCRIPTION, TEU = range(5)MAGIC_NUMBER = 0x570C4FILE_VERSION = 1class Ship(object):  def __init__(self, name, owner, country, teu=0, description=""):    self.name = name    self.owner = owner    self.country = country    self.teu = teu    self.description = description  def __hash__(self):    return super(Ship, self).__hash__()  def __lt__(self, other):    return bool(self.name.lower()<other.name.lower())  def __eq__(self, other):    return bool(self.name.lower()==other.name.lower())class ShipContainer(object):  def __init__(self, filename=""):    self.filename = filename    self.dirty = False    self.ships = {}    self.owners = set()    self.countries = set()  def ship(self, identity):    return self.ships.get(identity)  def addShip(self, ship):    self.ships[id(ship)] = ship    self.owners.add(str(ship.owner))    self.countries.add(str(ship.country))    self.dirty = True  def removeShip(self, ship):    del self.ships[id(ship)]    del ship    self.dirty = True  def __len__(self):    return len(self.ships)  def __iter__(self):    for ship in self.ships.values():      yield ship  def inOrder(self):    return sorted(self.ships.values())  def inCountryOwnerOrder(self):    return sorted(self.ships.values(),           key=lambda x: (x.country, x.owner, x.name))  def load(self):    exception = None    fh = None    try:      if not self.filename:        raise IOError("no filename specified for loading")      fh = QFile(self.filename)      if not fh.open(QIODevice.ReadOnly):        raise IOError(str(fh.errorString()))      stream = QDataStream(fh)      magic = stream.readInt32()      if magic != MAGIC_NUMBER:        raise IOError("unrecognized file type")      fileVersion = stream.readInt16()      if fileVersion != FILE_VERSION:        raise IOError("unrecognized file type version")      self.ships = {}      while not stream.atEnd():        name = ""        owner = ""        country = ""        description = ""        name=stream.readQString()        owner=stream.readQString()        country=stream.readQString()        description=stream.readQString()        teu = stream.readInt32()        ship = Ship(name, owner, country, teu, description)        self.ships[id(ship)] = ship        self.owners.add(str(owner))        self.countries.add(str(country))      self.dirty = False    except IOError as e:      exception = e    finally:      if fh is not None:        fh.close()      if exception is not None:        raise exception  def save(self):    exception = None    fh = None    try:      if not self.filename:        raise IOError("no filename specified for saving")      fh = QFile(self.filename)      if not fh.open(QIODevice.WriteOnly):        raise IOError(str(fh.errorString()))      stream = QDataStream(fh)      stream.writeInt32(MAGIC_NUMBER)      stream.writeInt16(FILE_VERSION)      stream.setVersion(QDataStream.Qt_5_7)      for ship in self.ships.values():        stream.writeQString(ship.name)        stream.writeQString(ship.owner)        stream.writeQString(ship.country)        stream.writeQString(ship.description)        stream.writeInt32(ship.teu)      self.dirty = False    except IOError as e:      exception = e    finally:      if fh is not None:        fh.close()      if exception is not None:        raise exceptiondef generateFakeShips():  for name, owner, country, teu, description in (("Emma M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 151687, "<b>W\u00E4rtsil\u00E4-Sulzer RTA96-C</b> main engine," "<font color=green>109,000 hp</font>"),("MSC Pamela", "MSC", "Liberia", 90449, "Draft <font color=green>15m</font>"),("Colombo Express", "Hapag-Lloyd", "Germany", 93750, "Main engine, <font color=green>93,500 hp</font>"),("Houston Express", "Norddeutsche Reederei", "Germany", 95000, "Features a <u>twisted leading edge full spade rudder</u>. " "Sister of <i>Savannah Express</i>"),("Savannah Express", "Norddeutsche Reederei", "Germany", 95000, "Sister of <i>Houston Express</i>"),("MSC Susanna", "MSC", "Liberia", 90449, ""),("Eleonora M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 151687, "Captain <i>Hallam</i>"),("Estelle M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 151687, "Captain <i>Wells</i>"),("Evelyn M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 151687, "Captain <i>Byrne</i>"),("Georg M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("Gerd M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("Gjertrud M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("Grete M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("Gudrun M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("Gunvor M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 97933, ""),("CSCL Le Havre", "Danaos Shipping", "Cyprus", 107200, ""),("CSCL Pusan", "Danaos Shipping", "Cyprus", 107200, "Captain <i>Watts</i>"),("Xin Los Angeles", "China Shipping Container Lines (CSCL)", "Hong Kong", 107200, ""),("Xin Shanghai", "China Shipping Container Lines (CSCL)", "Hong Kong", 107200, ""),("Cosco Beijing", "Costamare Shipping", "Greece", 99833, ""),("Cosco Hellas", "Costamare Shipping", "Greece", 99833, ""),("Cosco Guangzho", "Costamare Shipping", "Greece", 99833, ""),("Cosco Ningbo", "Costamare Shipping", "Greece", 99833, ""),("Cosco Yantian", "Costamare Shipping", "Greece", 99833, ""),("CMA CGM Fidelio", "CMA CGM", "France", 99500, ""),("CMA CGM Medea", "CMA CGM", "France", 95000, ""),("CMA CGM Norma", "CMA CGM", "Bahamas", 95000, ""),("CMA CGM Rigoletto", "CMA CGM", "France", 99500, ""),("Arnold M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, "Captain <i>Morrell</i>"),("Anna M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, "Captain <i>Lockhart</i>"),("Albert M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, "Captain <i>Tallow</i>"),("Adrian M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, "Captain <i>G. E. Ericson</i>"),("Arthur M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, ""),("Axel M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 93496, ""),("NYK Vega", "Nippon Yusen Kaisha", "Panama", 97825, ""),("MSC Esthi", "MSC", "Liberia", 99500, ""),("MSC Chicago", "Offen Claus-Peter", "Liberia", 90449, ""),("MSC Bruxelles", "Offen Claus-Peter", "Liberia", 90449, ""),("MSC Roma", "Offen Claus-Peter", "Liberia", 99500, ""),("MSC Madeleine", "MSC", "Liberia", 107551, ""),("MSC Ines", "MSC", "Liberia", 107551, ""),("Hannover Bridge", "Kawasaki Kisen Kaisha", "Japan", 99500, ""),("Charlotte M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Clementine M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Columbine M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Cornelia M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Chicago Express", "Hapag-Lloyd", "Germany", 93750, ""),("Kyoto Express", "Hapag-Lloyd", "Germany", 93750, ""),("Clifford M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Sally M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Sine M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Skagen M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Sofie M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Sor\u00F8 M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Sovereing M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Susan M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Svend M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Svendborg M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("A.P. M\u00F8ller", "M\u00E6rsk Line", "Denmark", 91690, "Captain <i>Ferraby</i>"),("Caroline M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Carsten M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Chastine M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("Cornelius M\u00E6rsk", "M\u00E6rsk Line", "Denmark", 91690, ""),("CMA CGM Otello", "CMA CGM", "France", 91400, ""),("CMA CGM Tosca", "CMA CGM", "France", 91400, ""),("CMA CGM Nabucco", "CMA CGM", "France", 91400, ""),("CMA CGM La Traviata", "CMA CGM", "France", 91400, ""),("CSCL Europe", "Danaos Shipping", "Cyprus", 90645, ""),("CSCL Africa", "Seaspan Container Line", "Cyprus", 90645, ""),("CSCL America", "Danaos Shipping ", "Cyprus", 90645, ""),("CSCL Asia", "Seaspan Container Line", "Hong Kong", 90645, ""),("CSCL Oceania", "Seaspan Container Line", "Hong Kong", 90645, "Captain <i>Baker</i>"),("M\u00E6rsk Seville", "Blue Star GmbH", "Liberia", 94724, ""),("M\u00E6rsk Santana", "Blue Star GmbH", "Liberia", 94724, ""),("M\u00E6rsk Sheerness", "Blue Star GmbH", "Liberia", 94724, ""),("M\u00E6rsk Sarnia", "Blue Star GmbH", "Liberia", 94724, ""),("M\u00E6rsk Sydney", "Blue Star GmbH", "Liberia", 94724, ""),("MSC Heidi", "MSC", "Panama", 95000, ""),("MSC Rania", "MSC", "Panama", 95000, ""),("MSC Silvana", "MSC", "Panama", 95000, ""),("M\u00E6rsk Stralsund", "Blue Star GmbH", "Liberia", 95000, ""),("M\u00E6rsk Saigon", "Blue Star GmbH", "Liberia", 95000, ""),("M\u00E6rsk Seoul", "Blue Star Ship Managment GmbH", "Germany", 95000, ""),("M\u00E6rsk Surabaya", "Offen Claus-Peter", "Germany", 98400, ""),("CMA CGM Hugo", "NSB Niederelbe", "Germany", 90745, ""),("CMA CGM Vivaldi", "CMA CGM", "Bahamas", 90745, ""),("MSC Rachele", "NSB Niederelbe", "Germany", 90745, ""),("Pacific Link", "NSB Niederelbe", "Germany", 90745, ""),("CMA CGM Carmen", "E R Schiffahrt", "Liberia", 89800, ""),("CMA CGM Don Carlos", "E R Schiffahrt", "Liberia", 89800, ""),("CMA CGM Don Giovanni", "E R Schiffahrt", "Liberia", 89800, ""),("CMA CGM Parsifal", "E R Schiffahrt", "Liberia", 89800, ""),("Cosco China", "E R Schiffahrt", "Liberia", 91649, ""),("Cosco Germany", "E R Schiffahrt", "Liberia", 89800, ""),("Cosco Napoli", "E R Schiffahrt", "Liberia", 89800, ""),("YM Unison", "Yang Ming Line", "Taiwan", 88600, ""),("YM Utmost", "Yang Ming Line", "Taiwan", 88600, ""),("MSC Lucy", "MSC", "Panama", 89954, ""),("MSC Maeva", "MSC", "Panama", 89954, ""),("MSC Rita", "MSC", "Panama", 89954, ""),("MSC Busan", "Offen Claus-Peter", "Panama", 89954, ""),("MSC Beijing", "Offen Claus-Peter", "Panama", 89954, ""),("MSC Toronto", "Offen Claus-Peter", "Panama", 89954, ""),("MSC Charleston", "Offen Claus-Peter", "Panama", 89954, ""),("MSC Vittoria", "MSC", "Panama", 89954, ""),("Ever Champion", "NSB Niederelbe", "Marshall Islands", 90449, "Captain <i>Phillips</i>"),("Ever Charming", "NSB Niederelbe", "Marshall Islands", 90449, "Captain <i>Tonbridge</i>"),("Ever Chivalry", "NSB Niederelbe", "Marshall Islands", 90449, ""),("Ever Conquest", "NSB Niederelbe", "Marshall Islands", 90449, ""),("Ital Contessa", "NSB Niederelbe", "Marshall Islands", 90449, ""),("Lt Cortesia", "NSB Niederelbe", "Marshall Islands", 90449, ""),("OOCL Asia", "OOCL", "Hong Kong", 89097, ""),("OOCL Atlanta", "OOCL", "Hong Kong", 89000, ""),("OOCL Europe", "OOCL", "Hong Kong", 89097, ""),("OOCL Hamburg", "OOCL", "Marshall Islands", 89097, ""),("OOCL Long Beach", "OOCL", "Marshall Islands", 89097, ""),("OOCL Ningbo", "OOCL", "Marshall Islands", 89097, ""),("OOCL Shenzhen", "OOCL", "Hong Kong", 89097, ""),("OOCL Tianjin", "OOCL", "Marshall Islands", 89097, ""),("OOCL Tokyo", "OOCL", "Hong Kong", 89097, "")):    yield Ship(name, owner, country, teu, description)

/home/yrd/eric_workspace/chap14/ships_conv/ships-dict.pyw

#!/usr/bin/env python3import sysfrom PyQt5.QtCore import QFile, QTimer, Qtfrom PyQt5.QtWidgets import (QApplication, QDialog, QHBoxLayout, QLabel,    QListWidget, QListWidgetItem, QMessageBox, QPushButton,    QSplitter, QTableWidget, QTableWidgetItem, QTreeWidget,    QTreeWidgetItem, QVBoxLayout, QWidget)import shipsMAC = Truetry:  from PyQt5.QtGui import qt_mac_set_native_menubarexcept ImportError:  MAC = Falseclass MainForm(QDialog):  def __init__(self, parent=None):    super(MainForm, self).__init__(parent)    listLabel = QLabel("&List")    self.listWidget = QListWidget()    listLabel.setBuddy(self.listWidget)    tableLabel = QLabel("&Table")    self.tableWidget = QTableWidget()    tableLabel.setBuddy(self.tableWidget)    treeLabel = QLabel("Tre&e")    self.treeWidget = QTreeWidget()    treeLabel.setBuddy(self.treeWidget)    addShipButton = QPushButton("&Add Ship")    removeShipButton = QPushButton("&Remove Ship")    quitButton = QPushButton("&Quit")    if not MAC:      addShipButton.setFocusPolicy(Qt.NoFocus)      removeShipButton.setFocusPolicy(Qt.NoFocus)      quitButton.setFocusPolicy(Qt.NoFocus)    splitter = QSplitter(Qt.Horizontal)    vbox = QVBoxLayout()    vbox.addWidget(listLabel)    vbox.addWidget(self.listWidget)    widget = QWidget()    widget.setLayout(vbox)    splitter.addWidget(widget)    vbox = QVBoxLayout()    vbox.addWidget(tableLabel)    vbox.addWidget(self.tableWidget)    widget = QWidget()    widget.setLayout(vbox)    splitter.addWidget(widget)    vbox = QVBoxLayout()    vbox.addWidget(treeLabel)    vbox.addWidget(self.treeWidget)    widget = QWidget()    widget.setLayout(vbox)    splitter.addWidget(widget)    buttonLayout = QHBoxLayout()    buttonLayout.addWidget(addShipButton)    buttonLayout.addWidget(removeShipButton)    buttonLayout.addStretch()    buttonLayout.addWidget(quitButton)    layout = QVBoxLayout()    layout.addWidget(splitter)    layout.addLayout(buttonLayout)    self.setLayout(layout)    self.tableWidget.itemChanged[QTableWidgetItem].connect(self.tableItemChanged)    addShipButton.clicked.connect(self.addShip)    removeShipButton.clicked.connect(self.removeShip)    quitButton.clicked.connect(self.accept)    self.ships = ships.ShipContainer("ships.dat")    self.setWindowTitle("Ships (dict)")    QTimer.singleShot(0, self.initialLoad)  def initialLoad(self):    if not QFile.exists(self.ships.filename):      for ship in ships.generateFakeShips():        self.ships.addShip(ship)      self.ships.dirty = False    else:      try:        self.ships.load()      except IOError as e:        QMessageBox.warning(self, "Ships - Error","Failed to load: {0}".format(e))    self.populateList()    self.populateTable()    self.tableWidget.sortItems(0)    self.populateTree()  def reject(self):    self.accept()  def accept(self):    if (self.ships.dirty and      QMessageBox.question(self, "Ships - Save?",          "Save unsaved changes?",          QMessageBox.Yes|QMessageBox.No) ==          QMessageBox.Yes):      try:        self.ships.save()      except IOError as e:        QMessageBox.warning(self, "Ships - Error","Failed to save: {0}".format(e))    QDialog.accept(self)  def populateList(self, selectedShip=None):    selected = None    self.listWidget.clear()    for ship in self.ships.inOrder():      item = QListWidgetItem("{0} of {1}/{2} ({3:,})".format(ship.name,ship.owner,ship.country,int(ship.teu)))      self.listWidget.addItem(item)      if selectedShip is not None and selectedShip == id(ship):        selected = item    if selected is not None:      selected.setSelected(True)      self.listWidget.setCurrentItem(selected)  def populateTable(self, selectedShip=None):    selected = None    self.tableWidget.clear()    self.tableWidget.setSortingEnabled(False)    self.tableWidget.setRowCount(len(self.ships))    headers = ["Name", "Owner", "Country", "Description", "TEU"]    self.tableWidget.setColumnCount(len(headers))    self.tableWidget.setHorizontalHeaderLabels(headers)    for row, ship in enumerate(self.ships):      item = QTableWidgetItem(ship.name)      item.setData(Qt.UserRole, id(ship))      if selectedShip is not None and selectedShip == id(ship):        selected = item      self.tableWidget.setItem(row, ships.NAME, item)      self.tableWidget.setItem(row, ships.OWNER,          QTableWidgetItem(ship.owner))      self.tableWidget.setItem(row, ships.COUNTRY,          QTableWidgetItem(ship.country))      self.tableWidget.setItem(row, ships.DESCRIPTION,          QTableWidgetItem(ship.description))      item = QTableWidgetItem("{0:>8}".format(ship.teu))      item.setTextAlignment(Qt.AlignRight|Qt.AlignVCenter)      self.tableWidget.setItem(row, ships.TEU, item)    self.tableWidget.setSortingEnabled(True)    self.tableWidget.resizeColumnsToContents()    if selected is not None:      selected.setSelected(True)      self.tableWidget.setCurrentItem(selected)  def populateTree(self, selectedShip=None):    selected = None    self.treeWidget.clear()    self.treeWidget.setColumnCount(2)    self.treeWidget.setHeaderLabels(["Country/Owner/Name", "TEU"])    self.treeWidget.setItemsExpandable(True)    parentFromCountry = {}    parentFromCountryOwner = {}    for ship in self.ships.inCountryOwnerOrder():      ancestor = parentFromCountry.get(ship.country)      if ancestor is None:        ancestor = QTreeWidgetItem(self.treeWidget, [ship.country])        parentFromCountry[ship.country] = ancestor      countryowner = ship.country + "/" + ship.owner      parent = parentFromCountryOwner.get(countryowner)      if parent is None:        parent = QTreeWidgetItem(ancestor, [ship.owner])        parentFromCountryOwner[countryowner] = parent      item = QTreeWidgetItem(parent, [ship.name,"{0}".format(ship.teu)])      item.setTextAlignment(1, Qt.AlignRight|Qt.AlignVCenter)      if selectedShip is not None and selectedShip == id(ship):        selected = item      self.treeWidget.expandItem(parent)      self.treeWidget.expandItem(ancestor)    self.treeWidget.resizeColumnToContents(0)    self.treeWidget.resizeColumnToContents(1)    if selected is not None:      selected.setSelected(True)      self.treeWidget.setCurrentItem(selected)    print(parentFromCountry)    print(parentFromCountryOwner)  def addShip(self):    ship = ships.Ship(" Unknown", " Unknown", " Unknown")    self.ships.addShip(ship)    self.populateList()    self.populateTree()    self.populateTable(id(ship))    self.tableWidget.setFocus()    self.tableWidget.editItem(self.tableWidget.currentItem())  def tableItemChanged(self, item):    ship = self.currentTableShip()    if ship is None:      return    column = self.tableWidget.currentColumn()    if column == ships.NAME:      ship.name = item.text().strip()    elif column == ships.OWNER:      ship.owner = item.text().strip()    elif column == ships.COUNTRY:      ship.country = item.text().strip()    elif column == ships.DESCRIPTION:      ship.description = item.text().strip()    elif column == ships.TEU:      ship.teu = item.text()    self.ships.dirty = True    self.populateList()    self.populateTree()  def currentTableShip(self):    item = self.tableWidget.item(self.tableWidget.currentRow(), 0)    if item is None:      return None    return self.ships.ship(        item.data(Qt.UserRole))  def removeShip(self):    ship = self.currentTableShip()    if ship is None:      return    if (QMessageBox.question(self, "Ships - Remove",        "Remove {0} of {1}/{2}?".format(ship.name,ship.owner,ship.country),        QMessageBox.Yes|QMessageBox.No) ==        QMessageBox.No):      return    self.ships.removeShip(ship)    self.populateList()    self.populateTree()    self.populateTable()app = QApplication(sys.argv)form = MainForm()form.show()app.exec_()

运行结果:

以上这篇python3+PyQt5 使用三种不同的简便项窗口部件显示数据的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。


  • 上一条:
    python 应用之Pycharm 新建模板默认添加编码格式-作者-时间等信息【推荐】
    下一条:
    使用python接入微信聊天机器人
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客