我正在尝试将数据库中的数据加载到 html 页面中。基本上,当用户访问他们的个人资料并单击“购买历史”时,它应该查询数据库并显示用户购买的所有产品。
我正在尝试使用 ajax 和 json 执行此操作,但出现错误:
TypeError: <gluon.dal.Field object at 0x091CCD90> is not JSON serializable
下面是代码:
def prodHistoryJson():
productName = db.sale.title
productCost = db.sale.price
prodShipAdd = db.sale.shipping_address
prodShipCity = db.sale.shipping_city
prodShipState = db.sale.shipping_state
prodShipZipCode = db.sale.shipping_zip_code
myproducts = {'prodName':productName,
'cost':productCost,
'shipAdd':prodShipAdd,
'shipCity':prodShipCity,
'shipState':prodShipState,
'shipZipCode':prodShipZipCode}
import gluon.contrib.simplejson as json
returnData = json.dumps(myproducts)
return returnData
下面是jQuery:
$.ajax( {
url:'/suzannecollins/onlineStore/prodHistoryJson',
data: { message: "Your products purchase history is listed below" },
success: function(msg) {
try {
myproducts=JSON.parse(msg);
}
catch(err) {
console.log(" error");
}
// place returned value in the DOM
$('#returnData').html(myproducts.title + myproducts.price + myproducts.shipping_address
+ myproduct.shipping_state + myproducts.shipping_city + myproducts.shipping_zip_code);
}
});
我究竟做错了什么?如果我只是以更简单的方式执行此操作,即用户点击 purchase_History 按钮并查询数据库并显示购买的产品,我可以让这一切正常工作。我如何用上面的代码做同样的事情?