
react
江南程客
这个作者很懒,什么都没留下…
展开
-
React Native环境安装
开发平台:MacBook Air 目标平台:IOS https://reactnative.cn/docs/getting-started.html 安装 Homebrew 若已安装请忽略 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 安装 Node 和 Watchman brew install node brew install watchman .原创 2020-08-15 22:33:30 · 163 阅读 · 0 评论 -
React复合组件
组件允许你将 UI 拆分为独立可复用的代码片段,并对每个片段进行独立构思。本指南旨在介绍组件的相关理念。你可以参考详细组件 API。 组件,从概念上类似于 JavaScript 函数。它接受任意的入参(即 “props”),并返回用于描述页面展示内容的 React 元素。 ...原创 2020-08-13 21:36:41 · 169 阅读 · 0 评论 -
React 样式使用
设置样式的三种方式 1、内联样式 2、对象样式 3、选择器样式 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Hello React!</title> <script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js">&.原创 2020-08-13 21:11:07 · 192 阅读 · 0 评论