文件夹结构:
SetAttr ThisWorkbook.Path & "\booktoupdate.xlsx", vbNormal
'Paste in some values
SetAttr ThisWorkbook.Path & "\booktoupdate.xlsx", vbReadOnly
我检查了其他问题,但没有一个帮助我。这是app / auth / views.py中的导入:
├── app
│ ├── admin
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── views.py
│ ├── auth
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── views.py
│ ├── home
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── views.py
│ ├── __init__.py
│ ├── models.py
│ └── templates
│ ├── admin
│ │ ├── departments
│ │ ├── members
│ │ └── roles
│ ├── auth
│ ├── base.html
│ ├── errors
│ │
│ └── home
│ ├── admin_dashboard.html
│ ├── dashboards
│ └── treasurers
├── config.py
├── instance
│ └── config.py
├── migrations
├── requirements.txt
├── run.py
└── tests.py
check_role 是app / home / views.py中的功能。当我运行我的应用程序并打开浏览器时,我看到此错误:
from ..home.views import check_role
from . import auth
from .forms import LoginForm, MemberRegistrationForm, LeaderRegistrationForm
from .. import db
from ..models import Member
这可能是什么原因?