我在搜索示例 python 代码时遇到了一个示例:
import peewee
from peewee import *
db = MySQLDatabase('jonhydb', user='john',passwd='megajonhy')
class Book(peewee.Model):
author = peewee.CharField()
title = peewee.TextField()
class Meta:
database = db
我可以理解 up title = peewee.TextField()
,但我对 line 有点困惑class Meta: ...
。为什么需要这个?没有其他方法可以建立连接吗?