Zend Framework 的购物车库
目前我正在 Zend Framework 中设计一个购物车。 我决定从头开始为用户/角色/产品目录编写代码,我已经完成并测试了这些代码。但对于其他事情,我需要你们指导我哪些是构建这个系统的最佳类/库。
我需要以下功能作为
- 订单
- 库存
- 帐户
- Paypal 集成
- UPS/USPS/Fedex 集成。
感谢您抽出时间。
注意:我已经浏览过 magento 模块,从中提取我需要的东西有点困难,所以这对我来说是最后的手段。
currently i am designing a shopping cart in Zend Framework.
I decided to write code for user/roles/product catalog from scratch which i have already done and tested. But for other things i need you guys to guide me which are the best classes/libraries to build this system system.
I need following functionality as
- Order
- Inventory
- Accounts
- Paypal Integration
- UPS/USPS/Fedex Integration.
and thanks for your time.
Note: I have already gone through magento modules, its bit difficult to extract from it what i need, so it will be last resort for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Paypal 或 Fedex 等外部供应商在其网站上提供了指南。
看看其他这样做:
我很惊讶它很难提取。 Magento 架构并不是很复杂。
External vendors such as Paypal or Fedex has guides on their sites.
Take a look like other do this:
I'm surprised it's difficult to extract. Magento architecture isn't very complicated.
忘记尝试“自己提取”。这是一个实际教程,向您展示如何使用 Zend Framework 和 PayPal API 调用。
http:// www.alexventure.com/.../zend-framework-and-the-paypal-api-part-1-of-2/
Forget trying to "extract it yourself". Here's an actual tutorial that shows you how to use the Zend Framework and PayPal API calls.
http://www.alexventure.com/.../zend-framework-and-the-paypal-api-part-1-of-2/
Zend Framework 没有库,它是一个框架,这意味着库和购物车所需的所有东西都在那里......你只需要自己编写它们
Zend Framework doesn't have libraries, it's a framework which means all the stuff you need for the libraries and shopping cart is there... you'll just have to write them yourself