uniapp经验-总结1

发布一下 0 0

打包h5

  • 1、设置mainfest.json中h5节点的publicPath为:'./'
  • 2、打包完毕后找到index.xxxxx.js文件,将uniConfig.router={mode:"hash",base:"/"}修改为uniConfig.router={mode:"hash",base:"./"}

请求延迟

 "networkTimeout" : {        "uploadFile" : 100000000,        "request" : 100000000    },

大项目打包h5

       "h5" : {        "title" : "微领",		    "domain" : "",		    "router" : {		        "mode" : "hash",		        "base" : "./"		    },		    "publicPath" : "./",		    "optimization" : {		        "treeShaking" : {		            "enable" : true		        }		    },		    "uniStatistics" : {		        "enable" : false		    },		    "sdkConfigs" : {		        "maps" : {}		    }        }

app跳转到网页

 // #ifdef APP-PLUSvar url ="www.baidu.com"plus.runtime.openURL( url ); // #endif

h5跳转到网页

// #ifdef H5 window.location.href=that.urls// #endif

colorUI动画

style有animationDelay:0.1s//动画延时clss有animation-reverse//动画逆行animation-动画名fade//淡入scale-up//变大进入scale-down//变小进入slide-top//上入slide-bottom//下入slide-left//左入slide-right//右入shake//颤抖

打开app的方法

if (plus.os.name == 'Android') {		//判断是app		plus.runtime.launchApplication(		{pname: 'com.ss.android.ugc.aweme'	//软件包名,用跳转网页方法也可以打开app		},		function(e) {			console.log('Open system default browser failed: ' + e.message);		}		);	}else if (plus.os.name == 'iOS') {	//判断是ios	plus.runtime.launchApplication(	{ 		action:'snssdk1128://aweme'		//网页地址	}, function(e) {		console.log('Open system default browser failed: ' + e.message);	});		}

富文本方法

<rich-text :nodes="nodes"></rich-text>	data() {return {image:""}},computed:{nodes(){let node = this.image;node =  node.replace(/\<img/g, '<img style="width: 100%"');// console.log(node)return node;	}},

公共样式

<Return></Return>import Return from "../components/return.vue"components:{	Return	},

过滤器

<view>买家姓名:{{lists.name|nulls}}</view>filters:{nulls(data){	if(data==undefined){ return ""}}}

顶部状态框高度

calc(var(--status-bar-height)height: var(--status-bar-height);	padding-top: calc(var(--status-bar-height) + 30rpx);plus.runtime.versionCode //版本号不带点plus.runtime.version //版本号带点min-height: 100vh;//自适应高

版权声明:内容来源于互联网和用户投稿 如有侵权请联系删除

本文地址:http://0561fc.cn/61758.html