欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 小程序公用js提取到app.js中调用的实例

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

小程序公用js提取到app.js中调用的实例

发布时间:2020-11-12  

index.wxml:

 

<view class="datas" bindtap="test01" data-id="0">

<text>{{page}}</text>

</view>

 

<view class="datas" bindtap="test02" data-id="1">

<text>测试2</text>

</view>

 

<navigator class="test2" url="/pages/page2/page2">跳转到测试页面page2</navigator>

index.wxss:

 

.datas{

width: 200px;

height: 100px;

background-color: #188eee;

text-align: center;

line-height: 100px;

color: #fff;

margin-top: 20px;

}

.test2{

width: 200px;

height: 50px;

line-height: 50px;

text-align: center;

color: #fff;

background-color: red;

margin-top: 50px;

}

index.js

 

var app=getApp();

Page({

data: {

page:"测试数据1"

},

/*调用公共方法test01*/

test01:function(event){

var that=this;

app.test01(event,that);

},

/*调用公共方法test02*/

test02: function () {

app.test02();

}

})

page2.wxml:

 

<view class="page2" bindtap="test01" data-id="page2">

{{page}}

</view>

page2.wxss

 

.page2{

width: 200px;

height: 100px;

background-color: #188eee;

text-align: center;

line-height: 100px;

color: #fff;

margin-top: 20px;

}

page2.js

 

var app=getApp();

Page({

data: {

page: "测试数据1"

},

/*调用公共方法test01*/

test01: function (event) {

var that = this;

app.test01(event, that);

},

})

app.json

 

{

"pages":[

"pages/index/index",

"pages/page2/page2"

],

"window":{

"backgroundTextStyle":"light",

"navigationBarBackgroundColor": "#fff",

"navigationBarTitleText": "WeChat",

"navigationBarTextStyle":"black"

}

}

app.js

 

App({

 

test01: function (event, that){

that.data.page= "修改后的page数据";

that.setData({

page: that.data.page

});

console.log(event.currentTarget.dataset.id);

},

 

test02:function(){

console.log("test2");