0

我正在做一个应用程序,我正在使用蓝图结构。我的代码运行正常,但是在尝试将烧瓶缓存实现到一个函数时出现此错误。

返回的错误是:AttributeError: 'Blueprint' object has no attribute 'cache'

有没有人在这里有一个解决方案来使缓存发生在这个函数上?

这是我的一段代码:

from flask import render_template, redirect, request, Blueprint
from cache import store_weather, number_of_views, cached_weather, cache
import json, requests

bp = Blueprint('bp', __name__, url_prefix="/weather")
main = Blueprint('main', __name__)

api_key = "42fbb2fcc79717f7601238775a679328"

@main.route('/')
def hello():

    views = 5
    max_views = number_of_views()
    return render_template('index.html', cached_weather=cached_weather, max_views=max_views, views=views)


@bp.route('/', methods=['GET'])
def weather():

    clean_list_cache()

    if request.args.get('max').isdigit():
        views = int(request.args.get('max'))
    else:
        views = 5

    try:
        city_name = request.args.get('city')

        if city_name not in cached_weather:
            
            uri = 'http://api.openweathermap.org/data/2.5/weather?q={city}&appid={key}'.format(city=city_name,key=api_key)
            # On that point, we bring the data from the Open Weather API
            rUrl = requests.get(uri)

            # The temperature of the Open Weather API is in Kelvin, so, we have to subtract 273.15 to transform
            # it into Celsius degrees
            temperature = str(round((json.loads(rUrl.content)['main'])['temp']-273.15))+" °C"
            name = json.loads(rUrl.content)['name']
            description = json.loads(rUrl.content)['weather'][0]['description']

            city_data = { "temp":temperature, "name":name, "desc":description }

            store_weather(city_data)

        max_views = number_of_views(views)

        return render_template('weather.html',  cached_weather = cached_weather, error_rec_city = False, max_views=max_views, views=views)

    except KeyError:
        max_views = number_of_views(views)
        return render_template('weather.html',  cached_weather=cached_weather, error_rec_city = True, max_views=max_views, views=views)


@bp.cache.cached(timeout=30, key_prefix='list_cache')
def clean_list_cache():
    cached_weather.clear()
4

1 回答 1

0

当您尝试在蓝图上调用缓存时发生错误:@bp.cache.cached。文档中如何使用缓存的示例是:

@app.route("/")
@cache.cached(timeout=50)
def index():
    return render_template('index.html')

所以你必须在你的应用装饰器和函数之间挤压缓存装饰器

于 2021-02-16T20:34:14.273 回答