我正在创建一个使用Python和烧瓶的网站,并在我的HTML表格中打印:
Rory O\u0027Shea Was Here
代替Rory O'Shea Was Here
。
当我在终端中运行Python程序时,它会打印出来很好,但是当我将它放入我的HTML模板时会出现问题,这使得它打印\u0027
。
如何让它打印预期的Rory O'Shea Was Here
?
这是main.py(运行烧瓶应用程序):
from flask import Flask, render_template, request
from hboA import HbobyRating
app = Flask(__name__)
@app.route("/hbo")
def hbo():
name = "HBO"
logo = "/static/pics/hbo-logo.jpg"
hbomovies = HbobyRating
db = hbomovies
return render_template('channel_template.html', hbomovies=hbomovies, name=name, db=db, logo=logo)
这是imdbHbo.py(这使用IMDB api创建电影数据库):
import json
import urllib2
with open('/home/chim/Documents/moveit/hbomovies.json') as data_file: #opens the movie database from Guidebox api
moviedata = json.load(data_file)
Id = [x['imdb'] for x in moviedata['results']] #extracts the imdbid from guidebox api
pyList = []
def getMovieRating(): #creates a new json file containing the imdb data from the channels of guidebox api
for i in Id:
imdbid = i
imdbapi = "http://www.omdbapi.com/?i=%s&plot=short&r=json" % imdbid
response = urllib2.urlopen(imdbapi)
result = json.load(response)
pyList.append(result)
with open('/home/chim/Documents/moveit/static/hboImdb.json', 'w') as outfile:
json.dump(pyList, outfile)
getMovieRating()
这是hboA.py python(这是根据他们的IMDB评级将电影分类到列表中):
import json
with open('/home/chim/Documents/moveit/final/hboImdb.json') as data_file: #opens the imdb database we created
response = json.load(data_file)
def getKeyRat(item):
return item[1]
def getKeyAlpha(item):
return item[0]
TitleRating = [[x["Title"].encode('utf-8'), x['imdbRating'], x['Year'], x['Rated'], x['Genre'], x['Runtime']] for x in response]
for each in TitleRating:
each.append("HBO")
HbobyRating = sorted(TitleRating, key=getKeyRat, reverse=True)
HbobyAlpha = sorted(TitleRating, key=getKeyAlpha)
这是HTML:
<!DOCTYPE html>
<img src={{logo}} alt="logo" style="width:512px;height:320px;" align="right">
<head>
<title>Welcome to MoveIt</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<h1> Welcome to MoveIt</h1>
<p>check out HBO <a href="/hbo">click here</a></p>
<p>check out Cinemax <a href="/cinemax">click here</a></p>
<p>check out Showtime <a href="/showtime">click here</a></p>
<p> Or see a list by channel</p>
<form action="/select" method="POST">
<fieldset>
<input type="checkbox" name="channels" value="hbomovies" />HBO<br>
<input type="checkbox" name="channels" value="cinemaxmovies" />Cinemax<br>
<input type="checkbox" name="channels" value="showtimemovies" />Showtime<br>
<input type="submit" value="Submit">
</fieldset>
</form>
<h2>These are the movies on {{name}} <i>right now</i>, listed by their IMDB rating:</h2>
<table border="1">
<tr>
<th>Title</th>
<th>Imdb Rating</th>
<th>Year</th>
<th>Rated</th>
<th>Genre</th>
<th>Runtime</th>
</tr>
{% for row in db %}
<tr>
<td>{{ row[0]|tojson|safe }}</td>
<td>{{ row[1] }}</td>
<td>{{ row[2] }}</td>
<td>{{ row[3] }}</td>
<td>{{ row[4] }}</td>
<td>{{ row[5] }}</td>
</tr>
{% endfor %}
</table>
答案 0 :(得分:1)
您在不同的地方遇到代码问题。
首先,为什么Title
用utf-8编码?内部字符串必须使用unicode,只有在写入流时,才需要进行编码:
import json
from operator import attrgetter
DATABASE = '/home/chim/Documents/moveit/final/hboImdb.json'
def read_database(database):
with open(database) as data_file: #opens the imdb database we created
response = json.load(data_file)
hbo_by_rating = sorted(response, key=attrgetter('imdbRating'), reverse=True)
hbo_by_alpha = sorted(response, key=attrgetter('Title'))
return hbo_by_rating, hbo_by_alpha
hbo_by_rating, hbo_by_alpha = read_database(DATABASE)
接下来,在您的模板中,您明确说出&#39; tojson&#39;它将每个非ASCII字符转义为unicode \uxxxx
。只需删除它:
<h2>These are the movies on {{name}} <i>right now</i>, listed by their IMDB rating:</h2>
<table border="1">
<tr>
<th>Title</th>
<th>Imdb Rating</th>
<th>Year</th>
<th>Rated</th>
<th>Genre</th>
<th>Runtime</th>
</tr>
{% for row in db %}
<tr>
<td>{{ row.Title }}</td>
<td>{{ row.imdbRating }}</td>
<td>{{ row.Year }}</td>
<td>{{ row.Rated }}</td>
<td>{{ row.Genre }}</td>
<td>{{ row.Runtime }}</td>
</tr>
{% endfor %}
</table>
答案 1 :(得分:0)
您需要在上传之前对其进行编码。使用foo.encode('utf-8')
,其中foo
是包含字符串的变量。