-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
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
feat: 为微信小程序添加 openOfficialAccountArticle 接口 #16519
Conversation
你只加了 options 也就是参数的类型,但是这个方法调用的函数类型没有加。 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #16519 +/- ##
=======================================
Coverage 58.51% 58.51%
=======================================
Files 466 466
Lines 27109 27110 +1
Branches 5737 5719 -18
=======================================
+ Hits 15862 15863 +1
- Misses 9757 9758 +1
+ Partials 1490 1489 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
好的,回调函数的参数类型已经修改了。 |
我前面说的 option 里面 success, fail, complete 这3个回调参数的类型,这个还没有修改 Promise 返回的类型只能指定 resolve 值的类型 小程序api调用方式都是把回调函数作为参数传进去,默认是不支持promise的,taro内部对部分api进行了promise 化,所以,还需要把这个api加到源码的 needPromiseApis 中 |
complete好像不需要改吧,其他的都修改好了。 |
ci 报错了,修改 needPromiseApis 需要更新下测试快照。 complete 的回调函数参数类型也需要修改,你可以在小程序实际测试下这个方法。 TaroGeneral.CallbackResult 已经有 errMsg 了,既然 extends了就没必要再写一遍。 promise 泛型 指定的是 reslove 值的类型, fail 方法走的是 reject |
怎么 close 掉了,还差一点点就可以合并了 |
准备重新提一个pr的,新的commit,感觉之前commit有点乱了,但是又发现更新快照老是报错😂 |
根目录下有个 tests 目录,直接运行里面的 updateSnapshot 命令 |
在 tests 目录内运行 updateSnapshot 是正常的,但是好像没有变化 |
这个 PR 做了什么? (简要描述所做更改)
添加微信小程序从基础库 3.4.8 开始支持的 wx.openOfficialAccountArticle 接口
功能描述:通过小程序打开任意公众号文章(不包括临时链接等异常状态下的公众号文章),必须有点击行为才能调用成功。
官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.openOfficialAccountArticle.html
这个 PR 是什么类型? (至少选择一个)
这个 PR 涉及以下平台: