-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
解決 async:true , dataLoaded 針對 Send to Chat 沒反應的辦法 #37
Comments
其实这里只不过是针对timeline把desc和title写错了做的处理 关键是上一行的_extend执行不好导致没更新 |
1 similar comment
其实这里只不过是针对timeline把desc和title写错了做的处理 关键是上一行的_extend执行不好导致没更新 |
加上async为true以后,需要手动在ready方法中调用:this.dataLoaded。我在新版本中加个兼容吧。 |
問題不在有沒有調用 dataLoaded. 是 async:true 時 ,分享到朋友圈時 調用 dataLoaded 所有字段都刷新 (是好的) |
是Android还是iOS?微信版本是多少,send to chat的时候,那个字段未更新?我一并fix了吧。 |
我在 android 測試的 我的解法是 cmd.menu == 'menu:share:appmessage' || 原本只有 if (cmd.menu == 'menu:share:timeline' ||
(cmd.menu == 'menu:general:share' && argv.shareTo == 'timeline')) {
... 修改後的 if if (cmd.menu == 'menu:share:timeline' ||
cmd.menu == 'menu:share:appmessage' ||
(cmd.menu == 'menu:general:share' && argv.shareTo == 'timeline')) {
... |
我刚刚升级了一个版本,这个问题应该是不存在了,我明天去找个3.1版本的Android试试。 |
恩 我也剛升到 6.0.2 |
我遇到的问题是图片没有刷新,所以我强制写了一个 这个语句在 这些判断之前,问题解决了 |
問題: 當使用 Async 時Send到Chat 有些字段沒有刷新
解決辦法:
line 124 下面 : 加上
完整如下:
請參考!
The text was updated successfully, but these errors were encountered: