Here are 2,114 public repositories matching this topic...
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
-
Updated
Dec 25, 2019 - CSS
WxJava (微信开发 Java SDK),支持包括微信支付、开放平台、小程序、企业微信/企业号和公众号等的后端开发
-
Updated
Dec 25, 2019 - Java
VUX version
2.9.4
OS/Browsers version
windows/Google-chrome 75版本
Vue version
2.6.10
Code
F:\code\vux2\docs>node compile
fs.js:646
return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
^
Error: ENOENT: no such file or directory, open 'F:\cMars is a cross-platform network component developed by WeChat.
-
Updated
Dec 25, 2019 - C++
:speech_balloon: A better WeChat on macOS and Linux. Built with Electron by Zhongyi Tong.
-
Updated
Dec 25, 2019 - JavaScript
又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端
-
Updated
Dec 25, 2019 - Java
Front End Cross-Frameworks Framework - 前端跨框架跨平台框架
-
Updated
Dec 25, 2019 - JavaScript
English docs sync
What feature is it?
Sync English and multilingual website in Chinese docs to English docs
What problem does this feature solve?
Make English docs better
Additional description
After docs sync, some routes need to be transformed to be suitable for English user
https://github.com/Tencent/matrix/wiki/Matrix-Android-TraceCanary
业界有几种常见解决方案,都可以从一定程度上,帮助开发者快速定位到卡顿的堆栈,如 BlockCanary、ArgusAPM、LogMonitor 。这些方案的主要思想是,监控主线程执行耗时,当超过阈值时,dump出当前主线程的执行堆栈,通过堆栈分析找到卡顿原因。
从监控主线程的实现原理上,主要分为两种:
1、依赖主线程 Looper,监控每次 dispatchMessage 的执行耗时。(BlockCanary)
2、依赖 Choreographer 模块,监控相邻两次 Vsync 事件通知的时间差。(ArgusAPM、LogMonitor)
我看到 ArgusAPM 中 BlockTask 模块是通过 第一种方式监控 d
微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
-
Updated
Dec 25, 2019 - C#
$(document.body).infinite().on("infinite", function () {
if (loading) return;
loading = true;
console.log("-------------->");
setTimeout(function () {
loading = false;
}, 2000); //模拟延迟
});
这样会打印日志
$("#tab1").infinite().on("infinite", function () {
if (loading) return;
Improve this page
Add a description, image, and links to the wechat topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the wechat topic, visit your repo's landing page and select "manage topics."
问题描述
最近使用
movable-view做了一个拖拽排序的功能,但是由于需要touchmove事件频繁setState来更新movable-view的坐标,导致Android的上的性能体验很差,IOS不会。看了微信的文档,这种情况可以使用
WXS来解决,请问Taro中能否使用WXS?如何使用呢?