from flask import Flask from flask_cache import Cache app = Flask(__name__) cache = Cache(config={'CACHE_TYPE': 'simple'}) ...
確定! 回上一頁