Here are 2,299 public repositories matching this topic...
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
-
Updated
Jun 17, 2020 - CSS
WxJava (微信开发 Java SDK),支持包括微信支付、开放平台、小程序、企业微信/企业号和公众号等的后端开发
-
Updated
Jul 11, 2020 - Java
我的vue.config.js配置
configureWebpack: config => {
require('@vux/loader').merge(config, {
plugins: ['vux-ui']
})
}
vux及vux-loader版本
"vux": "^2.9.4",
"vux-loader": "^1.2.9"
npm run serve/build 时报错如下内容
Error: [BABEL] unknown: Preset /* your preset */ requires a filename to be set when babel is called directly,
babel.transform(code,
According do android documentation onTermiante callback is invoked only emulated environments.
https://developer.android.com/reference/android/app/Application.html#onTerminate()
Invoking Log.appenderClose(); on oTerminate() will have no effect since onTerminate is not invoked.
又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端
-
Updated
Jul 5, 2020 - Java
-
Updated
Mar 19, 2019 - JavaScript
请求妈咪帮的rss
from wxpy import *
bot = Bot(cache_path=True) # 保持登陆状态
@bot.register()
def reply_friend(msg):
print('接收:' + str(msg)) #打印接收到的消息
msg.reply("hello world") #回复消息
msg.reply_image('12.png') #回复图片
msg.reply_file(‘12.png') #回复文件
msg.reply_file('1.txt') #回复文件
embed()
以上是一个例,期望运行结果是不管谁发送过来的消息都直接回复,但是第六行可以发送消息成功,第七行可以发送图片成功,第八行把图片已文件的形式发送也可以成功,但是第九行文件就是发送不了,发送1.zip也是发送不了
I found not document about how to use vconsole in nuxt.js, so I write this for anyone who need it.
- create vconsole.js in folder plugins
plugins
vconsole.js- open vconsole.js ,put belowing code
const Vconsole =
process.env.NODE_ENV !== 'production' ? require('vconsole') : {}
export default ({ app }, inject) => {
if (process.env.NODE_ENV !== 'produFront End Cross-Frameworks Framework - 前端跨框架跨平台框架
-
Updated
Jun 24, 2020 - JavaScript
-
Updated
Jul 11, 2020 - PHP
一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. )
-
Updated
May 15, 2020 - Python
Mac版微信的功能拓展(A plugin for Mac WeChat)
-
Updated
Jul 12, 2020 - Objective-C
Provide Your Network Information
- Where is the location of your server? (i.e. City, or In/Out China)
U.S. - Which cloud platform(AliYun/Qcloud/DigitalOcean/etc) are you using?
own machine
Run npm run doctor or wechaty run doctor(for docker user), paste output here
docker run in container
Expected behavior
bot.on('friendship', async friendship =>is_stack_frames_should_skip 判断逻辑有个疑问
bool is_stack_frames_should_skip(uintptr_t *frames, int32_t count, uint64_t malloc_size, uint32_t type_flags)
{
// skip allocation events from mapped_file
if (type_flags & memory_logging_type_mapped_file_or_shared_mem) {
if (mmap_func_info.vm_str == 0) {
Dl_info info = {0};
dladdr((const void *)frames[0], &info);
if (strcmp(info.dli微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
-
Updated
Jun 28, 2020 - C#
Hello.
I am big fan of iview UI Toolkit and interested in a mobile friendly version of it, which as far as i can tell is this project. Is there any progress in translating everything to English?
Great work in general. Congratulations.
微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。
-
Updated
Mar 18, 2020 - JavaScript
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?如何使用呢?