博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apiCloud中openFrameGroup传参
阅读量:6423 次
发布时间:2019-06-23

本文共 2662 字,大约阅读时间需要 8 分钟。

apiCloud中openFrameGroup传参

1.无效的

api.openFrameGroup({
// 打开 frame 组 name: 'group', scrollEnabled: false, rect: {
x: 0, y: 0, w: api.winWidth, h: api.winHeight-$api.dom('footer').offsetHeight }, pageParam:{
'footer_height':$api.dom('footer').offsetHeight }, index: 0, frames: frames}, function (ret, err) {
});

在新页面怎么获取都得不到数据。

2.正确的,将参数放入frames中

var eFooterLis = $api.domAll('#footer .aui-bar-tab-item'),    frames = []; // 选择所有匹配的DOM元素for (var i = 0,len = eFooterLis.length; i < len; i++) {
// 判断是否登录 var username = $api.getStorage('customer_id'); var url = './html/frame'+i+'.html'; if (i==4 && !username) {
url = './html/userLogin.html'; } frames.push( {
name: 'frame'+i, url: url, bgColor : 'rgba(0,0,0,.2)', bounces:true, pageParam:{
'footer_height':$api.dom('footer').offsetHeight }, } )}api.openFrameGroup({
// 打开 frame 组 name: 'group', scrollEnabled: false, rect: {
x: 0, y: 0, w: api.winWidth, h: api.winHeight-$api.dom('footer').offsetHeight }, index: 0, frames: frames}, function (ret, err) {
});

新页面获取参数

var footer_height = api.pageParam.footer_height;// 获取菜单api.ajax({
url: BASE_SH_REQUEST_URL+'/?g=Api&m=Home&a=getRootCategory', method: 'get', data: {}}, function(json, err) {
if (json.status == '1') {
var interText = doT.template($("#root_category_tmpl").text()); $("#root_category").html(interText(json.info)); var swiper_menu = new Swiper('#scroller.swiper-container', {
slidesPerView: 4, paginationClickable: true, spaceBetween: 5 }); var header = $api.byId('main'); $api.fixStatusBar(header); var pos = $api.offset(header); api.setStatusBarStyle({
// 设置头部颜色 style: 'dark' }); api.openFrame({
name: 'frame0Con', url: 'frame0Con.html', rect:{
x: 0, y: pos.h, w: api.winWidth, h: api.winHeight - pos.h - footer_height, }, bounces: true, opaque: true, vScrollBarEnabled: false, reload: true, pageParam:{
} }); } else {
var toast = new auiToast(); toast.fail({
title: json.msg, duration: 2000 }); }});

转载地址:http://qkwga.baihongyu.com/

你可能感兴趣的文章
算法(第四版)C#题解——2.1
查看>>
网关支付、银联代扣通道、快捷支付、银行卡支付分别是怎么样进行支付的?...
查看>>
大数据开发实战:Stream SQL实时开发一
查看>>
C++返回引用的函数例程
查看>>
dll 问题 (转)
查看>>
REST API用得也痛苦
查看>>
test for windows live writer plugins
查看>>
Tiny210 U-BOOT(二)----配置时钟频率基本原理
查看>>
代理模式
查看>>
javaweb学习总结(二十四)——jsp传统标签开发
查看>>
让script的type属性等于text/html
查看>>
linux 文件系统sysvinit 流程分析
查看>>
体素科技:2018年,算法驱动下的医学影像分析进展
查看>>
Vue 折腾记 - (8) 写一个挺靠谱的多地区选择组件
查看>>
VS Code折腾记 - (3) 多图解VSCode基础功能
查看>>
『翻译』Node.js 调试
查看>>
我的iOS开发之路总结(更新啦~)
查看>>
Java NIO之拥抱Path和Files
查看>>
微信原图泄露的只能是 Exif ,你的隐私不在这!!!
查看>>
微信小程序教学第三章(含视频):小程序中级实战教程:列表篇-页面逻辑处理...
查看>>