@H_404_1@npm install –save react-native@0.33
@H_404_1@指定rn版本号进行安装;其中 –save可以保存相关信息到package.json中,后面@指定版本号。
@H_404_1@在引入图片时遇到问题,实际是自己用法错误导致的。
@H_404_1@原则上来说rn对图片资源的处理是跨平台的,而且采用按需加载的方式。从实现上说,该方案是比较优雅的。
@H_404_1@我们只需要将资源文件放到自己希望的目录下,然后通过如下的方式来使用:
@H_404_1@另:rn的使用过程中遇到一些坑,有可能跟缓存和路径之类的有关。react native init 可以创建新的工程再运行。
@H_404_1@箭头函数:( xxx)=>{ do sth with xxx}
@H_404_1@xxx是参数,后面的是返回值。这里是一个比较简便的写法,es6的语法糖。
@H_404_1@“`
import React,{ Component } from ‘react’;
import { AppRegistry,Text,TextInput,View } from ‘react-native’; @H_404_1@class PizzaTranslator extends Component {
constructor(props) {
super(props);
this.state = {text: ”};
} @H_404_1@render() { return (
原文链接:https://www.f2er.com/react/305183.htmlimport React,{ Component } from ‘react’;
import { AppRegistry,Text,TextInput,View } from ‘react-native’; @H_404_1@class PizzaTranslator extends Component {
constructor(props) {
super(props);
this.state = {text: ”};
} @H_404_1@render() { return (