收藏
回答

TypeSrcipt模板更新添加miniprogram-api-typings编译出错。求助官方?

之前TypeSrcipt 模板里面 package.json 中dependencies 里面没有 miniprogram-api-typings。

npm install miniprogram-api-typings 
之后在 tsconfig.json 中修改 
typeRoots : [      
      "./node_modules/miniprogram-api-typings"
    ]

1.编译出现 错误
miniprogram/pages/auc/special/special.ts:62:3 - error TS2345: Argument of type '{ data: { curPage: number; pageSize: number; specials: never[]; session: {}; sesCode: string; loading: false; footer: false; showmask: false; loadAfresh: false; }; onLoad(options: any): void; onPullDownRefresh(): void; ... 4 more ...; handleTapLots(event: any): void; }' is not assignable to parameter of type 'Options<{ curPage: number; pageSize: number; specials: never[]; session: {}; sesCode: string; loading: boolean; footer: boolean; showmask: boolean; loadAfresh: boolean; }, {}>'.
  Object literal may only specify known properties, and 'eventLoadAfresh' does not exist in type 'Options<{ curPage: number; pageSize: number; specials: never[]; session: {}; sesCode: string; loading: boolean; footer: boolean; showmask: boolean; loadAfresh: boolean; }, {}>'.


62   eventLoadAfresh() {

2.miniprogram-api-typings  文件里面也出现错误
node_modules/miniprogram-api-typings/types/wx/lib.wx.api.d.ts:15775:15 - error TS2451: Cannot redeclare block-scoped variable 'console'.


15775 declare const console: WechatMiniprogram.Console
                    ~~~~~~~


  node_modules/typescript/lib/lib.dom.d.ts:17510:13
    17510 declare var console: Console;
                      ~~~~~~~
    'console' was also declared here.





最后一次编辑于  2020-02-14
回答关注问题邀请回答
收藏

2 个回答

  • 小程序技术专员-SgLy
    小程序技术专员-SgLy
    2020-02-14

    Cannot redeclare block-scoped variable 'console' 的问题参见 https://github.com/wechat-miniprogram/api-typings/issues/66

    special.ts 报错的问题,看起来是没有正确推导方法。special.ts 的代码可以看一下吗?不用具体逻辑,主要是看看函数签名和 Page 构造器的调用有没有定义没覆盖到的情况,谢谢~

    2020-02-14
    有用 1
    回复 1
    • 浮生
      浮生
      2020-02-14
      1. 第一个编译报错 找到了。分享出现问题   红框return{} 里面参数带值  编译必报错 。 绿色框解决办法。 这个错报 也是无语。  
      2. 编译类库报错 看了你发的链接 有对比最新的 tsconfig.json 文件,1. 添加 "lib": ["es5"]  2. include 引用  miniprogram  【旧项目typings 还未删除】
      2020-02-14
      回复
  • Yangtze
    Yangtze
    2021-01-26

    我这报node_modules/miniprogram-api-typings/types/wx/lib.wx.api.d.ts:3853:19 - error TS2304: Cannot find name 'current'.

    2021-01-26
    有用
    回复 1
    • 自来水管饱
      自来水管饱
      2021-07-15
      解决了吗
      2021-07-15
      回复
登录 后发表内容
问题标签