在按提交时,表单应将值传递给服务器。但我得到这500个内部服务器错误。这是我的views.py代码: -
from app import app
from flask import render_template,request
import feedparser
import json
@app.route('/')
@app.route('/index')
def search():
return render_template('index.html')
@app.route('/searchRSS',methods=['POST'])
def search_results():
feed = feedparser.parse("http://news.google.com/news?hl=en&gl=in&q="+request.form['query']+"&um=1&output=rss" )
posts = []
for i in range(0,len(feed['entries'])):
posts.append({
'date': feed['entries'][i].title,
'title': feed['entries'][i].updated,
'description': feed['entries'][i].description
})
return json.dumps(posts, separators=(',', ':'))
这里是index.html: -
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
window.onload=function (){
$("#searcher").submit(function(ev) {
/* stop form from submitting normally */
ev.preventDefault();
$.post("/searchRSS", $("#searcher").serialize(),function(o) {document.getElementById("result").innerHTML=o;});
})};
</script>
<form id="searcher" method="post" action="#">
<input type="text" id="query" name="query" required/>
<input type="submit" value="Get Feed"/>
</form>
<div id="result"></div>
答案 0 :(得分:1)
Chardet 2.1.3似乎没有移植到Python 3.您可以阅读作者关于移植chardet here的案例研究。如果您查看PyPi发行版的源代码,它与案例研究中的Python 3端口不同。
我能够在GitHub上找到一个chardet的fork,它在这里被移植到Python 3:https://github.com/byroot/chardet。您可能希望使用该分支进行测试,看看它是否能解决问题。
编辑:
你应该可以使用pip来安装:pip install https://github.com/byroot/chardet/zipball/master
你可能想先删除当前的chardet或者在它自己的virtualenv中测试它。