l1n6yun
Results
2
issues of
l1n6yun
`portal:article` 标签使用 `relation` 属性对数据进行关联载入时,标签调用了 `ApiService` 的 `articles`,其中[113行](https://github.com/thinkcmf/thinkcmf/blob/5afd357f5c44a72f08454a06324e6d9c3644b104/app/portal/service/ApiService.php#L113)、[130行](https://github.com/thinkcmf/thinkcmf/blob/5afd357f5c44a72f08454a06324e6d9c3644b104/app/portal/service/ApiService.php#L130) ```php if (!empty($relation) && !empty($articles['items'])) { $articles->load($relation); } ``` 其中$articles中没有items数组,导致关联载入没有生效。
bug
enhancement