博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Flux] Component / Views
阅读量:5033 次
发布时间:2019-06-12

本文共 1122 字,大约阅读时间需要 3 分钟。

The application will dislay a some catalogs, and each catalog has title image, description. 

 

Catalog:

import React from 'react';import AppStore from '../stores/app-store';import CatalogItem from './app-catalogitem';function getCatalog(){  return { items: AppStore.getCatalog() }}class Catalog extends React.Component {  constructor(){    super();    this.state = getCatalog()  }  render(){    let items = this.state.items.map( item => {      return 
}); return (
{ items }
) }}export default Catalog;

 

Each Catalog render CatalogItem:

import React from 'react';import AppActions from '../actions/app-actions';import CartButton from './app-cart-button';export default (props) => {  return (      

{ props.item.title }

{ props.item.summary }

${ props.item.cost }

)}

 

CartButton handle the click event whcih passed in:

import React from 'react';export default (props) => {  return (          )}

 

转载于:https://www.cnblogs.com/Answer1215/p/4965854.html

你可能感兴趣的文章
解读“统一价格分评审方法”
查看>>
大道至简第七、八章读后感
查看>>
【PHP】对TP中session的理解
查看>>
jquery $(document).ready() 与window.onload的区别
查看>>
Excel VBA 学习总结 - 基础知识
查看>>
深入.NET平台和C#编程笔记第二章
查看>>
JSON数据填充表格——(三)
查看>>
田园的饭可好吃了 2018年中北大学新生赛
查看>>
asp.net json,对象,字符串的相互转换
查看>>
Oracle优化面试题
查看>>
Spring入门之二-------SpringIoC之实例化Bean以及注入Bean
查看>>
Centos6和7的区别
查看>>
338. Counting Bits
查看>>
MySQL临时表
查看>>
关于使用jqmobi前端框架在phonegap平台上开发时的日期时间选择控件
查看>>
HDU 4638 Group (莫队算法||线段树离散查询)
查看>>
精神到处文章老,学问深时意气平(努力方向)——Leo2014年终总结
查看>>
Android-ListView 下拉刷新
查看>>
批量判断流量大于300的小脚本
查看>>
SDN
查看>>