这是jQuery
$.ajax({
type: "POST",
url: "/posthere",
dataType: "json",
data: {myDict:{'1':'1', '2':'2'}},
success: function(data){
//do code
}
});
这是蟒蛇
@route("/posthere", method="POST")
def postResource(myDict):
#do code
return "something"
看起来支持 int、float、path 和 re 的 url 格式......我错过了什么吗?