本文作者:IMWeb helondeng 原文出处:IMWeb社区 未经同意,禁止转载
React-Native 基于目前React来开发IOS原生应用,Android版本将在年底推出。
目前主流的应用大体分成三类:Native App, Web App, Hybrid App.
优点
优点
Native App 和 Web App 折中的方案,保留了 Native App 和 Web App 的优点。但是最受吐槽的还是性能差。页面渲染效率低,在Webview中绘制界面,实现动画,资源消耗都比较大。
What we really want is the user experience of the native mobile platforms, combined with the developer experience we have when building with React on the web.
这是 React-Native 设计的初衷: 既保留流畅的用户体验,有保留React的开发效率。
对应前端的开发模式的变化:
1) 安装以来的包和软件,参考这里。 2) 运行下面的命令,初始化项目:
react-native init helloworld
3) 在项目目录下面,运行:
npm install
npm start
4) 使用 Xcode 开发项目,运行,即可看到模拟器中的效果。这里有可能会运行失败报错,主要可以从2方面排查:
jsCodeLocation
的定义是否正确。5) 修改目录下的 index.ios.js 文件,定制自己的UI。
render : function() {
return (
<View style={styles.container}>
<Text>Hello World!</Text>
</View>
)
}
cmd + R 刷新模拟器即可看到效果,就是这么简单。
如下图,实现课程列表的效果(下图是react-native实现效果,原效果猛戳这里,只实现了页面中的listview):
var CList = React.createClass({
getInitialState: function(){
var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
return {
dataSource: ds.cloneWithRows(data),
load: false
}
},
render: function(){
return (
<ListView dataSource={this.state.dataSource}
renderRow={this.renderRow}
style={styles.courseList} />
)
},
renderRow: function(course){
course._price = course.price == 0 ? '免费' : '¥' + (course.price / 100).toFixed(2);
course._priceCla = {};
course._priceCla.color = course.price == 0 ? '#5db61b' : '#e85308';
return(
<TouchableOpacity>
<View style={styles.row}>
<View style={styles.container}>
<Image style={styles.face} source={{uri : course.cover_url + '222'}}/>
<View style={styles.right}>
<Text style={styles.name} numberOfLines="2">{course.name}</Text>
<Text style={styles.agency}>{course.agency_name}</Text>
<View style={{flex: 1, flexDirection: 'row'}}>
<Text style={[styles.price,course._priceCla]}>
{course._price}
</Text>
<Text style={{color: 'gray', flex: 1}}>{course.see_num}人观看</Text>
</View>
</View>
</View>
</View>
</TouchableOpacity>
)
}
});
module.exports = CList;
在入口文件中,require上面的文件,然后在render方法中直接调用改组件即可。
render: function() {
return (
<NavigatorIOS
style={styles.container}
initialRoute={{
title: '课程列表',
component: CList,
}} />
);
}
小试了一下 React-Native,还是很强大的,期待Android的版本。文章中若有不对,欢迎斧正、交流。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有