uni-app真机运行报错:plus is not defined

前言

使用un-app开发Android和IOS原生应用,在浏览器中调试时,报错:plus is not defined。

原因

  1. plus是5+Runtime的内部对象。
  2. 普通浏览器里没有plus环境,只有HBuilder真机运行、打包后、或流应用环境下才能运行plus api。
  3. 在普通浏览器里运行时plus api时控制台必然会输出plus is not defined错误提示。

解决方案

1、在真机上运行项目。若无法连接真机,请查看真机运行常见问题

2、为防止应用浏览器调试模式中一直出现:plus is not defined,在需要调用plus的地方加上条件编译:#ifdef

// APP-PLUS:仅出现在 App 平台下的代码
#ifdef APP-PLUS
需条件编译的代码
#endif

你可能感兴趣的:(uni-app,vue.js,前端,android)