We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您好,命令行,页面我都可以运行,但是输入没有正确响应
页面:按照提示输入 蜘蛛咬伤的概述是什么?,
def search_post(request): ctx = {} if request.POST: question = request.POST['q'] ctx['rlt'] = query_main.query_function(question) #执行到这里报错了 print(ctx['rlt']) return render(request, "post.html", ctx)
print 结果: SELECT DISTINCT ?x WHERE { ?s :jibingname '蜘蛛咬伤'.?s :gaishu ?x }
出现503错误,
其他就是无法理解之类,
命令行都是I dont .....之类
The text was updated successfully, but these errors were encountered:
No branches or pull requests
您好,命令行,页面我都可以运行,但是输入没有正确响应
页面:按照提示输入
蜘蛛咬伤的概述是什么?,
def search_post(request):
ctx = {}
if request.POST:
question = request.POST['q']
ctx['rlt'] = query_main.query_function(question) #执行到这里报错了
print(ctx['rlt'])
return render(request, "post.html", ctx)
print 结果:
SELECT DISTINCT ?x WHERE {
?s :jibingname '蜘蛛咬伤'.?s :gaishu ?x
}
出现503错误,
其他就是无法理解之类,
命令行都是I dont .....之类
The text was updated successfully, but these errors were encountered: