這裏是jQuery的是否有可能從jquery發佈一個對象到bottle.py?
$.ajax({
type: "POST",
url: "/posthere",
dataType: "json",
data: {myDict:{'1':'1', '2':'2'}},
success: function(data){
//do code
}
});
這裏是Python
@route("/posthere", method="POST")
def postResource(myDict):
#do code
return "something"
它看起來像支持整數,浮點,路徑,並重新將網址格式...我這麼想嗎?
'dataType'指定**返回**類型,而不是傳遞的數據類型。 –
...和'數據'需要是單層對象(散列表),而不是層級。 [參考文獻](http://api.jquery.com/jQuery.ajax/)。 –