call restoreItem func of plugins in reversed order #31
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bug 描述
现在对model调用 restoreItem 时,结果仍然会有relations,没有restore干净。
原因
目前Plugin的proceesItem和restoreItem都是按顺序调用的。目前的顺序是 [relationPlugin, modelPlugin]。结果就是先调用了的relationPlugin的restoreItem,去掉了relation。但是modelPlugin的restoreItem直接返回了rawYaml,导致结果还是有relation。应该反过来,先拿到rawYaml,再去掉relation才正确。
因此,在restoreItem的时候按照plugins的反向顺序调用更加合理一些。