Giter Site home page Giter Site logo

jk-react-selector's Introduction

Install

npm i jk-react-selector

Usage

import Selector from 'jk-react-selector';
//function:
  showConsole=()=>{
    
  }
//render:
    const allData = [
      { key: 1, name: '事假' },
      ...
      ]
      //'key' and 'name' are neccessary properties
    const title = "请选择xxx"
//return:
    <Selector
      title = {title} //选择器标题,title message
      titleShow = {true/false}  //是否显示标题,if title show
      data = {allData}   //选择器要显示的列表数据,data items you want to show
      onSelect = {this.showConsole.bind()}  //点击item的回调函数,callback function
    />
  )
}

Tips

1、you can not have the same name items in data

wrong examples:

    const allData = [
      { key: 1, name: '事假' },
      { key: 2, name: '年假' },
      { key: 3, name: '事假' },
      ...
      ]

2、onSelect() must be a function

you can code as  "this.xxx.bind()" or "()=>this.xxx()" but not "this.xxx()"

keyword


react   selector  mobile

jk-react-selector's People

Contributors

mrmrmrmrrighty avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.