繁体   English   中英

运行时错误:在应用程序上下文之外工作。 烧瓶 - 邮件

[英]RuntimeError: Working outside of application context. Flask - Mail

from flask import current_app as app
from flask import render_template
from threading import Thread
from flask_mail import Message



def send_async_email(app, msg):
    with app.app_context():
        mail.send(msg)

def send_email(to, subject, template, **kwargs):
    msg = Message(app.config['MAIL_SUBJECT_PREFIX'] + subject,
                  sender=app.config['MAIL_SENDER'], recipients=[to])
    # msg.body = render_template(template + '.txt', **kwargs)
    msg.html = render_template(template + '.html', **kwargs)
    thr = Thread(target=send_async_email, args=(app,msg))
    thr.start()
    return thr
    #mail.send(msg)

运行时错误:在应用程序上下文之外工作。

这通常意味着您尝试使用需要以某种方式与当前应用程序对象交互的功能。 要解决此问题,请使用 app.app_context() 设置应用程序上下文。 有关更多信息,请参阅文档。

我以为我已经创建了 app_context,但代码仍然显示运行时错误。 请帮忙,谢谢。

app = current_app._get_current_object()
with app.app_context():
    pass
    # send email here

或者

from main import app
with app.app_context():
    pass

# main.py
app = Flask(__name__)

_get_current_object():

返回当前对象。 如果出于性能原因或希望将对象传递到不同的上下文中,而希望一次将真实对象置于代理之后,这将非常有用。

current_app 是一个 Flask 代理对象:

current_app = LocalProxy(_find_app)

您只能从当前线程中的 current_app 获取应用程序对象

您可以使用以下内容调用 async_send_mail 函数:

   app = current_app._get_current_object()
   thr = Thread(target=async_send_mail, args=[app, msg])
   thr.start()

然后异步函数看起来像这样:

def async_send_mail(app, msg):
   with app.app_context():
      mail.send(msg)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM