0

我有疑问,我的系统已经选择了购物卡的产品,但我想知道如何获取 User_id 和所有选择的 product_id,我有一个名为

['Auth']['user']['id'] 和 ['Cart']['']['product']['id']

如何保存到数据库中?

感谢一切!http://i.stack.imgur.com/uCV9O.png

4

3 回答 3

0

I'm not going to write a novel about that so just check the code. There is a bunch more to consider than just saving the data to the database.

https://github.com/burzum/Cart

Also read the section "Saving your data" of the CakePHP book. It should be logical that you have to read the data from your session and save it to the database. The page tells you how to do it.

于 2013-11-04T10:25:07.837 回答
0

我要解释一下我的问题,我已经准备好购物卡,除了付款之外的所有事情都做了,因为我不需要包括付款,这是我学校的控制书籍的系统。

对于每个用户,我想选择它的 ID 和它的产品。

示例:(我有 2 个表,用户和产品),当用户完成购物车时,我需要在下表中存储她的 id 和选择的产品 id

在这里,我有一个新表来存储每个用户的产品

|used_id | product_id| | 2013101 | 201340 | | 2013101 | 201334 | | 2013102 | 201395 | | 2013102 | 201399 |

于 2013-11-06T09:59:42.103 回答
0

我要解释一下我的问题,我已经准备好购物卡,除了付款之外的所有事情都做了,因为我不需要包括付款,这是我学校的控制书籍的系统。

对于每个用户,我想选择它的 ID 和它的产品。

示例:(我有 2 个表,用户和产品),当用户完成购物车时,我需要在下表中存储她的 id 和选择的产品 id

在这里,我有一个新表来存储每个用户的产品
_ __ _ __ _ __ _ __ _ __ _
| used_id | product_id|
_ __ _ __ _ __ _ __ _ __ _
| 2013101 | 201340 |
| 2013101 | 201334 |
| 2013102 | 201395 |
| 2013102 | 201399 |
_ __ _ __ _ __ _ __ _ __ _

于 2013-11-06T10:03:13.943 回答