我想将字体真棒箭头与w3schools tut中提供的代码一起使用,因为不再支持glypicons,我也无法获得
from flask import render_template,make_response
from flask_restful import Resource
from api.main.models import User
class Todo(Resource):
def get(self):
user1 = User(username="John",password="72389")
user1.save_to_db()
headers = {'Content-Type': 'text/html'}
return make_response(render_template('index.html'),200,headers)
在左右控件中,我尝试将其更改为字体真棒箭头,但无法使其正常工作。