0

我正在尝试将数据库中的数据加载到 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 按钮并查询数据库并显示购买的产品,我可以让这一切正常工作。我如何用上面的代码做同样的事情?

4

1 回答 1

0

所以感谢@Amadan昨晚,我们终于弄清楚了如何使用json查询数据库并序列化python对象以显示结果......

def pruchaseHistoryJson():
    if auth.user:
        rows = db(db.sale.auth_id == auth.user.id
                 ).select(db.sale.title, 
                          db.sale.price,
                          db.sale.shipping_address,
                          db.sale.shipping_state,
                          db.sale.shipping_city,
                          db.sale.shipping_zip_code)
    else:
        redirect(URL('default', 'user/login'))

import  gluon.contrib.simplejson as json
prodHistory = json.dumps([{'name': i.title, 
                           'prodValue':i.price,
                           'shipAdd':i.shipping_address,
                           'shipCity':i.shipping_city,
                           'shipState':i.shipping_state,
                           'shipCode':i.shipping_zip_code} for i in rows])
return prodHistory

此代码工作正常并按预期显示结果,现在回到为此编写 jquery 函数。

于 2013-11-03T04:12:25.543 回答