php微信从右上角打开,微信公众平台显示隐藏网页右上角菜单实例介绍

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

微信jsapi测试-V型知识库

.desc{

color: red;

}

欢迎来到微信jsapi测试界面-V型知识库

隐藏右上角菜单接口

hideOptionMenu

显示右上角菜单接口

showOptionMenu

关闭当前网页窗口接口

closeWindow

批量隐藏功能按钮接口

hideMenuItems

批量显示功能按钮接口

showMenuItems

隐藏所有非基础按钮接口

hideAllNonBaseMenuItem

显示所有功能按钮接口

showAllNonBaseMenuItem

基础接口之判断当前客户端是否支持指定的js接口

地理位置接口-使用微信内置地图查看位置接口

openLocation

地理位置接口-获取地理位置接口

getLocation

获取网络状态接口

getNetworkType

拍照或从手机相册中选图接口

chooseImage

预览图片接口

previewImage

上传图片接口

uploadImage

下载图片接口

downloadImage

显示图片

wx.config({

debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。

appId: '${appId}', // 必填,公众号的唯一标识

timestamp: '${ timestamp}' , // 必填,生成签名的时间戳

nonceStr: '${ nonceStr}', // 必填,生成签名的随机串

signature: '${ signature}',// 必填,签名,见附录1

jsApiList: ['checkJsApi',

'chooseImage',

'previewImage',

'uploadImage',

'downloadImage',

'getNetworkType',//网络状态接口

'openLocation',//使用微信内置地图查看地理位置接口

'getLocation', //获取地理位置接口

'hideOptionMenu',//界面操作接口1

'showOptionMenu',//界面操作接口2

'closeWindow' , 界面操作接口3

'hideMenuItems',界面操作接口4

'showMenuItems',界面操作接口5

'hideAllNonBaseMenuItem',界面操作接口6

'showAllNonBaseMenuItem'界面操作接口7

] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2

});

wx.ready(function(){

// 5 图片接口

// 5.1 拍照、本地选图

var images = {

localId: [],

serverId: []

};

document.querySelector('#chooseImage').onclick = function () {

wx.chooseImage({

success: function (res) {

images.localId = res.localIds;

alert('已选择 ' + res.localIds.length + ' 张图片');

$("#faceImg").attr("src", res.localIds[0]);//显示图片到页面上

}

});

};

// 5.2 图片预览

document.querySelector('#previewImage').onclick = function () {

wx.previewImage({

current: 'http://www.vxzsk.com/upload//bf04c9b5-5699-421d-900e-3b68bbe58a8920160816.jpg',

urls: [

'http://www.vxzsk.com/upload//bf04c9b5-5699-421d-900e-3b68bbe58a8920160816.jpg',

'http://www.vxzsk.com/upload//bf04c9b5-5699-421d-900e-3b68bbe58a8920160816.jpg',

'http://www.vxzsk.com/upload//bf04c9b5-5699-421d-900e-3b68bbe58a8920160816.jpg'

]

});

};

// 5.3 上传图片

document.querySelector('#uploadImage').onclick = function () {

if (images.localId.length == 0) {

alert('请先使用 chooseImage 接口选择图片');

return;

}

var i = 0, length = images.localId.length;

images.serverId = [];

function upload() {

wx.uploadImage({

localId: images.localId[i],

success: function (res) {

i++;

//alert('已上传:' + i + '/' + length);

images.serverId.push(res.serverId);

if (i < length) {

upload();

}

},

fail: function (res) {

alert(JSON.stringify(res));

}

});

}

upload();

};

// 5.4 下载图片

document.querySelector('#downloadImage').onclick = function () {

if (images.serverId.length === 0) {

alert('请先使用 uploadImage 上传图片');

return;

}

var i = 0, length = images.serverId.length;

images.localId = [];

function download() {

wx.downloadImage({

serverId: images.serverId[i],

success: function (res) {

i++;

alert('已下载:' + i + '/' + length);

images.localId.push(res.localId);

if (i < length) {

download();

}

}

});

}

download();

};

// 6 设备信息接口

// 6.1 获取当前网络状态

document.querySelector('#getNetworkType').onclick = function () {

wx.getNetworkType({

success: function (res) {

alert(res.networkType);

},

fail: function (res) {

alert(JSON.stringify(res));

}

});

};

//网络接口结束

// 7 地理位置接口 开始

// 7.1 查看地理位置

document.querySelector('#openLocation').onclick = function () {

wx.openLocation({

latitude: 23.099994,

longitude: 113.324520,

name: 'TIT 创意园',

address: '广州市海珠区新港中路 397 号',

scale: 14,

infoUrl: 'http://weixin.qq.com'

});

};

// 7.2 获取当前地理位置

document.querySelector('#getLocation').onclick = function () {

wx.getLocation({

success: function (res) {

alert(JSON.stringify(res));

},

cancel: function (res) {

alert('用户拒绝授权获取地理位置');

}

});

};

// 7 地理位置接口 结束

// 8 界面操作接口 开始----------

// 8.1 隐藏右上角菜单

document.querySelector('#hideOptionMenu').onclick = function () {

wx.hideOptionMenu();

};

// 8.2 显示右上角菜单

document.querySelector('#showOptionMenu').onclick = function () {

wx.showOptionMenu();

};

// 8.3 批量隐藏菜单项

document.querySelector('#hideMenuItems').onclick = function () {

wx.hideMenuItems({

menuList: [

'menuItem:readMode', // 阅读模式

'menuItem:share:timeline', // 分享到朋友圈

'menuItem:copyUrl' // 复制链接

],

success: function (res) {

alert('已隐藏“阅读模式”,“分享到朋友圈”,“复制链接”等按钮');

},

fail: function (res) {

alert(JSON.stringify(res));

}

});

};

// 8.4 批量显示菜单项

document.querySelector('#showMenuItems').onclick = function () {

wx.showMenuItems({

menuList: [

'menuItem:readMode', // 阅读模式

'menuItem:share:timeline', // 分享到朋友圈

'menuItem:copyUrl' // 复制链接

],

success: function (res) {

alert('已显示“阅读模式”,“分享到朋友圈”,“复制链接”等按钮');

},

fail: function (res) {

alert(JSON.stringify(res));

}

});

};

// 8.5 隐藏所有非基本菜单项

document.querySelector('#hideAllNonBaseMenuItem').onclick = function () {

wx.hideAllNonBaseMenuItem({

success: function () {

alert('已隐藏所有非基本菜单项');

}

});

};

// 8.6 显示所有被隐藏的非基本菜单项

document.querySelector('#showAllNonBaseMenuItem').onclick = function () {

wx.showAllNonBaseMenuItem({

success: function () {

alert('已显示所有非基本菜单项');

}

});

};

// 8.7 关闭当前窗口

document.querySelector('#closeWindow').onclick = function () {

wx.closeWindow();

};

// 8 界面操作接口 结束------------------------------------------

});

//初始化jsapi接口 状态

wx.error(function (res) {

alert("调用微信jsapi返回的状态:"+res.errMsg);

});

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值