赞
踩
1.路由跳转模块
首先导入router模块,代码如下:
import router from '@ohos.router';
四种跳转方法:
方式一:通过调用router.push()方法,跳转到Ability内的指定页面。
router.push({ url: 'pages/Second', params: { src: 'Index页面传来的数据', } })
方式二:API9及以上,router.push()方法新增了mode参数,可以将mode参数配置为router.RouterMode.Single单实例模式和router.RouterMode.Standard标准模式。
router.push({ url: 'pages/Second', params: { src: 'Index页面传来的数据', } }, router.RouterMode.Single)
方式三:通过调用router.replace()方法,跳转到Ability内的指定页面。即使用新的页面替换当前页面,并销毁被替换的当前页面,页面栈数量不变。
router.replace({ url: 'pages/Second', params: { src: 'Index页面传来的数据', } })
方式四:API9及以上,router.replace()方法新增了mode参数,可以将mode参数配置为router.RouterMode.Single单实例模式和router.RouterMode.Standard标准模式。
router.replace({ url: 'pages/Second', params: { src: 'Index页面传来的数据', } }, router.RouterMode.Single)
返回界面
router.back()
注意:模拟时要先在index界面模拟
注意:congfig.json界面设置跳转界面
2.数据请求模块
导入模块,代码如下:
import http from '@ohos.net.http';
完整代码:
import http from '@ohos.net.http';
// 每一个httpRequest对应一个http请求任务,不可复用
let httpRequest = http.createHttp();
// 用于订阅http响应头,此接口会比request请求先返回。可以根据业务需要订阅此消息
// 从API 8开始,使用on('headersReceive', Callback)替代on('headerReceive', AsyncCallback)。 8+
httpRequest.on('headersReceive', (header) => {
console.info('header: ' + JSON.stringify(header));
});
httpRequest.request(
// 填写http请求的url地址,可以带参数也可以不带参数。URL地址需要开发者自定义。请求的参数可以在extraData中指定
"EXAMPLE_URL",
{
method: http.RequestMethod.POST, // 可选,默认为http.RequestMethod.GET
// 开发者根据自身业务需要添加header字段
header: {
'Content-Type': 'application/json'
},
// 当使用POST请求时此字段用于传递内容
extraData: {
"data": "data to send",
},
connectTimeout: 60000, // 可选,默认为60s
readTimeout: 60000, // 可选,默认为60s
}, (err, data) => {
if (!err) {
// data.result为http响应内容,可根据业务需要进行解析
console.info('Result:' + data.result);
console.info('code:' + data.responseCode);
// data.header为http响应头,可根据业务需要进行解析
console.info('header:' + JSON.stringify(data.header));
console.info('cookies:' + data.cookies); // 8+
} else {
console.info('error:' + JSON.stringify(err));
// 当该请求使用完毕时,调用destroy方法主动销毁。
httpRequest.destroy();
}
}
);
配置权限:
在config.json的module模块里配置:
3.弹窗模块
首先导入prompt模块
主要使用的是prompt.showToast()方法,作用是可以在屏幕上弹出提示信息。message是弹出的消息,而duration是弹出的时间,单位是毫秒。1000是1秒,则2000是2秒。
4.绑定事件
用on加事件名称,不同的组件有不同的事件类型
点击事件
触摸事件
挂载卸载事件
拖拽事件
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。