我有一个模型文件夹,里面有大约48个类文件。我希望所有这些类都可以在服务中访问,并且能够创建该类的新实例。
我试过了
Name: Compile Error
Message: <console>:1: error: ')' expected but '(' found.
readme.map(lambda line :len(line.split()) ).reduce( lambda a, b: a
if (a > b) else b ) ^
<console>:1: error: ';' expected but ')' found.
readme.map(lambda line :len(line.split()) ).reduce( lambda a, b: a
if (a > b) else b ) ^
但这似乎不起作用。
如果我单独导入这样的课程,它对我有用。
import * from '../models'
如何从Models文件夹导入所有内容?