We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
本地歌曲插件(下面简称 local)想避免每次启动都需要重复做以下几件事情
local 目前的做法中包含重要的一步是:
model -> dict,dict -> model 的过程其实就是 序列化/反序列化 的过程。
fuocore.serializer 实现了 model 的序列化,而目前实际上缺一个反序列化的模块。
fuocore.serializer
关于 fuocore.models.uri 的 resolve 和 reverse
目前,这两个函数自成体系,但实际上作用和 serializer 功能有些重复。期望能把其逻辑统一到 serializer 模块中去
The text was updated successfully, but these errors were encountered:
No branches or pull requests
动机
本地歌曲插件(下面简称 local)想避免每次启动都需要重复做以下几件事情
local 目前的做法中包含重要的一步是:
model -> dict,dict -> model 的过程其实就是 序列化/反序列化 的过程。
简介与背景
fuocore.serializer
实现了 model 的序列化,而目前实际上缺一个反序列化的模块。关于 fuocore.models.uri 的 resolve 和 reverse
目前,这两个函数自成体系,但实际上作用和 serializer 功能有些重复。期望能把其逻辑统一到 serializer 模块中去
难点及其解决方案
The text was updated successfully, but these errors were encountered: