我遇到了一个我似乎无法解决的问题。任何见解都会很棒。
该脚本应该从数据库获取内存分配信息,并将该信息作为格式化的JSON对象返回。当我给它一个静态JSON对象时,该脚本工作正常,这将是stack_ids(我将要传递的信息),但是当我尝试通过POST传递信息时它将不起作用。
虽然我的代码的当前状态使用request.json(“”)来访问传递的数据,但我也尝试了request.POST.get(“”)。
我的HTML包含此帖子请求,使用D3的xhr帖子:
var stacks = [230323, 201100, 201108, 229390, 201106, 201114];
var stack_ids = {'stack_ids': stacks};
var my_request = d3.xhr('/pie_graph');
my_request.header("Content-Type", "application/json")
my_request.post(stack_ids, function(stuff){
stuff = JSON.parse(stuff);
var data1 = stuff['allocations'];
var data2 = stuff['allocated bytes'];
var data3 = stuff['frees'];
var data4 = stuff['freed bytes'];
...
...
}, "json");
虽然我的服务器脚本有这条路线:
@views.webapp.route('/pie_graph', method='POST')
def server_pie_graph_json():
db = views.db
config = views.config
ret = {
'allocations' : [],
'allocated bytes' : [],
'frees' : [],
'freed bytes' : [],
'leaks' : [],
'leaked bytes' : []
}
stack_ids = request.json['stack_ids']
#for each unique stack trace
for pos, stack_id in stack_ids:
stack = db.stacks[stack_id]
nallocs = format(stack.nallocs(db, config))
nalloc_bytes = format(stack.nalloc_bytes(db, config))
nfrees = format(stack.nfrees(db, config))
nfree_bytes = format(stack.nfree_bytes(db, config))
nleaks = format(stack.nallocs(db, config) - stack.nfrees(db, config))
nleaked_bytes = format(stack.nalloc_bytes(db, config) - stack.nfree_bytes(db, config))
# create a dictionary representing the stack
ret['allocations'].append({'label' : stack_id, 'value' : nallocs})
ret['allocated bytes'].append({'label' : stack_id, 'value' : nalloc_bytes})
ret['frees'].append({'label' : stack_id, 'value' : nfrees})
ret['freed bytes'].append({'label' : stack_id, 'value' : nfree_bytes})
ret['leaks'].append({'label' : stack_id, 'value' : nleaks})
ret['leaked bytes'].append({'label' : stack_id, 'value' : nfree_bytes})
# return dictionary of allocation information
return ret
大部分内容都可以忽略,当我给它一个充满数据的静态JSON对象时,脚本会工作。
请求当前返回500内部服务器错误:JSONDecodeError('期望值:第1行第2列(char 1)')。
任何人都可以向我解释我做错了吗?
另外,如果您需要我进一步解释或包含任何其他信息,我很乐意这样做。在这么长时间工作之后,我的大脑略微油炸,所以我可能错过了一些东西。
答案 0 :(得分:0)
这是我用POST做的事情,它起作用了:
from bottle import *
@post('/')
def do_something():
comment = request.forms.get('comment')
sourcecode = request.forms.get('sourceCode')
function saveTheSourceCodeToServer(comment) {
var path = saveLocation();
var params = { 'sourceCode' : getTheSourceCode() , 'comment' : comment};
post_to_url(path, params, 'post');
}
带有Source 信用的{p> JavaScript post request like a form submit