plus.runtime.version获取的到底是什么版本

plus.runtime.version代表的是:manifest.json中设置的apk/ipa版本号。
此API获取的apk(或ipa)的版本号。
在manifest.json中配置时需要提交到App云端打包后才能生效,所以在真机运行的时候获取的是HBuilder 5+ Runtime的版本号。

plus.runtime.getProperty取不到version的话则:

	let _this=this;
			plus.runtime.getProperty(plus.runtime.appid, function(wgtinfo){
				if(wgtinfo.version){
					 _this.version = wgtinfo.version;
				}else{
					_this.version = plus.runtime.version;
				}
			});

你可能感兴趣的:(小程序-uniapp,#,android,node.js,前端,后端)