StarBridgeYoung

Results 4 comments of StarBridgeYoung

已经解决了,依赖包版本调整的原因,可以把之前版本的依赖包的版本覆盖现在的版本即可

鉴于大家都有这个问题,我把我的解决方案提供下。具体的文件放在https://gitee.com/yxq920925/antd-vue3.-x-fix 作者没有锁死依赖包版本导致的问题,由于依赖包无限嵌套,我没办法排除具体是哪个依赖的包问题,于是我把之前运行正常的项目的yarn.lock文件复制到当前项目,重新yarn install,问题得到解决。 具体步骤: 1.把当前项目的node-modules、yarn.lcok删除 2.yarn install 3.将本仓库的yarn.lock替换当前项目 4.再次yarn install 5.不用担心我的lock会影响到你的项目,yarn会自动更新不匹配的部分

import asyncio from aiocoap import * from aiocoap.numbers import GET,PUT,POST async def main(): protocol = await Context.create_client_context() payload = b'0' # Example payload (you may need to modify it) request...

> Hi I had tested the library again, but I created a python aiocoap implementation, it works! > > On arduino esp32 put the text and text lenght to coap.sendResponse:...