关于在Cocos-creator中使用微信小程序的api

时间:2024-04-05 08:30:10
  • 创建一个空项目
  • 关于在Cocos-creator中使用微信小程序的api
  • 新建一个demo.ts
    关于在Cocos-creator中使用微信小程序的api
  • 用Vscode打开项目
  • 关于在Cocos-creator中使用微信小程序的api
  • 打开后如图
  • 关于在Cocos-creator中使用微信小程序的api
  • 如果我们直接写wx.xxx函数 会报找不到名称“wx”。错误
  • 幸亏微信团队维护了 .d.ts 文件
  • wechat-miniprogram
  • 在项目根目录执行 npm install miniprogram-api-typings 会生成 node_modules 目录
  • 如果你在执行wx 发现还是没能有提示功能,那是因为miniprogram-api-typings 模块无法被ts识别
  • 方法一:在node_modules 新建一个 @types 目录,把miniprogram-api-typings 目录移动到@types下,在写wx就可以识别了
  • 如图:
  • 关于在Cocos-creator中使用微信小程序的api
  • 方法二:在miniprogram-api-typings/types/下找到 lib.wx.api.d.ts文件 把它拷贝到项目根目录也可以