Upgrade 2.4.0 - marmot-cn/marmot-framework GitHub Wiki

2.4.0

概述

翻译器修改

添加IRestfulTranslator, 在使用GuzzleAdapter时候需要返回该接口的翻译器. 具体翻译器代码不用改动, 只用修改该返回实现即可.

因为原先前端服务层代码是独立的底层架构实现, 现在回逐步集成在统一的框架内.

如原前端服务层代码实现

xxx implements Translator

现在修改为

xxx implements IRestfulTranslator

添加fetchOne

RowCacheQuery, RowQuery添加fetchOne, fetchList, 对代码可读性进行兼容处理, get表示轻量级获取, fetch表示远程抓取. 后续代码尽量使用fetchOnefetchList

Jsonapi特性变化

  • Common\Controller\JsonApiController改为引用Marmot\Framework\Controller\JsonApiTrait加载性状
  • Common\View\JsonApiView改为引用Marmot\Framework\View\JsonApiTrait加载性状