Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
react.js ドキュメントには、次の変数宣言があります。
var { Image, StyleSheet, Text, View } = React;
どういう意味か分かりますか?ありがとうございました。
これは、destructuring と呼ばれる ES6 の機能です。基本的には次のように書くのと同じです:
var Image = React.Image; var StyleSheet = React.StyleSheet; var Text = React.Text; var View = React.View;