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
WxMpTemplateIndustryEnum 枚举反序列化时,使用WxMpIndustryGsonAdapter 通过convertFromJson 返回WxMpTemplateIndustryEnum时通过WxMpTemplateIndustryEnum.findBySecondary(secondClass)方法中的equals(secondClass)返回枚举,而反序列化的adapter中却通过截取字符串返回secondClass if (secondClass.contains("|")) { secondClass = secondClass.split("\|")[1]; }
The text was updated successfully, but these errors were encountered:
fix issue binarywang#1571
22a69b4
#1413 楼主是否看过这里,并跑下对应的单元测试看看?
Sorry, something went wrong.
目前在当前基础上对代码进行了尽可能的优化,以减少由于官方文档跟实际接口不一致情况导致的问题。当然如果以后官方接口还要继续做调整,无法完全兼顾的话,再考虑做彻底的改造。
🎨 #1571 对微信模版消息行业信息不一致的变态问题尽可能的进行优化
4eb1d1d
No branches or pull requests
WxMpTemplateIndustryEnum 枚举反序列化时,使用WxMpIndustryGsonAdapter
通过convertFromJson 返回WxMpTemplateIndustryEnum时通过WxMpTemplateIndustryEnum.findBySecondary(secondClass)方法中的equals(secondClass)返回枚举,而反序列化的adapter中却通过截取字符串返回secondClass
if (secondClass.contains("|")) {
secondClass = secondClass.split("\|")[1];
}
The text was updated successfully, but these errors were encountered: