我正在使用 Zend Framework 2 构建一个网上商店,这个网上商店将使用供应商提供的 API。
我们想销售定制汽车产品,如进气口、空气悬架零件和套件、车身套件、排气管、格栅、方向盘等。
供应商提供具有以下功能的 API(仅GET
使用参数和逗号分隔的响应调用)
产品
- 按类别搜索;
- 按汽车品牌搜索-->车型-->类型;
- 按 ID 搜索;
- 按名称搜索;
订单
- 添加;
- 看法;
- 删除。
发票
- 看法;
Stock获取当前值
交付按 orderId 查看当前状态。
我已经构建了一个名为SupplierName的模块。我创建了一个 Module.php 文件:
<?php
/**
* This file is placed here for compatibility with ZendFramework 2's ModuleManager.
* It allows usage of this module even without composer.
* The original Module.php is in 'src/SupplierName/Module.php' in order to
* respect the PSR-0 convention
*/
require_once __DIR__ . '/src/SupplierName/Module.php';
供应商/供应商名称/src/供应商名称/Module.php
<?php
namespace SupplierName;
class Module
{
public function getConfig()
{
return include __DIR__ . '/../../config/module.config.php';
}
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__,
),
),
);
}
}
在主模块的 IndexController 的 indexAction 中,我使用下面的代码来加载我的模块。
$supplierNameClient = $this->getServiceLocator()->get('SupplierName\Client');
现在我的问题来了……这是我第一次构建一个仅用于从外部资源加载数据并将其传递到我自己的系统的模块。问题是我没有想出一个好的模块结构......我认为每种产品类型(烤架、排气装置、转向轮等)、订单、发票等都应该有一个类。
我一直在搜索并查看http://modules.zendframework.com/page/2?query=api。有一个包含应该用于与 Web 服务通信的模块的列表。
谁能告诉我在哪里寻找信息/样本来构建这样的模块?或者谁能给我一个例子,我应该如何构建这个模块?
非常感谢,如果有不清楚的地方,请告诉我,以便我解释!