uin-app初体验H5 api使用

  • messaging(手机发送短信测试)
<!-- 废话不多说直接怼代码 -->
<template>
	<view class="openBox_page">
		<div class="logo" @click="smsTest">{{title}}</div>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				title: '发送短信处'
			}
		},
		onLoad() {

		},
		methods: {
			smsTest() {
				var _this = this;
				var msg = plus.messaging.createMessage(plus.messaging.TYPE_SMS);//创建消息对象
				msg.to = ['10001', '10010'];//发送给谁
				msg.body = '发送短信测试';//发送内容
				plus.messaging.sendMessage(msg,_this.successCB,_this.errorCB);//发送消息
			},
			successCB(){//发送成功的回调
				this.title = '发送失败了';
			},
			errorCB(){//发送失败的回调
				this.title = '发送失败了';
			}
		}
	}
</script>

知识点注解:
1.rem只能在h5上使用,如果需要多端适配,需要使用upx.使用和rpx(小程序单位)差不多
2.uin-app的样式书写和小程序相同,如果使用背景图片样式,不能以静态路径的形式存在,要用网络图片
3.短信发送api只在手机端支持
4.uin-app不支持alert()
5.函数报错会发生短路,下面函数将不会逐步执行

你可能感兴趣的:(uin-app初体验H5 api使用)