簡體   English   中英

使用藍圖緩存 function

[英]Flask-caching a function using blueprints

我正在做一個應用程序,我正在使用藍圖結構。 我的代碼運行正常,但在嘗試將燒瓶緩存實現到 function 時出現此錯誤。

返回的錯誤是:AttributeError: 'Blueprint' object has no attribute 'cache'

有沒有人在這里有一個解決方案來使緩存發生在這個 function 上?

這是我的一段代碼:

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()

當您嘗試在藍圖上調用緩存時發生錯誤: @bp.cache.cached 文檔中如何使用緩存的示例是:

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

所以你必須在你的應用裝飾器和 function 之間擠壓緩存裝飾器

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM