GithubHelp home page GithubHelp logo

sp-func's Introduction

sp-func

Common Functions for Url, Validate, Ajax etc


Install

NPM

npm install --save sp-func
// or yarn add sp-func

CDN

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/sp-func/index.min.js"></script>
<script>
  __FUNC.serviceAPI(options = {
    url: '/',
    method: 'get',
    data: {},
    success: function () {},
    fail: function () {},
    headers: {}
  });
  __FUNC.serviceAPI({url: 'http://test.com/test.json'})
</script>

Usage

 //__FUNC: {serviceAPI, Validate, Url, Validate}
const __FUNC = require('sp-func')

API Request

Based on axios.

  • serviceAPI (options = {})
    • options
      • [url]: String
      • [method]: String
      • [data]: Object
      • [success]: Function
      • [fail]: Function
  __FUNC.serviceAPI({
    url: 'http://test.com/test.json',
    success: (res) => {
      console.log(res)
    }
  })

Validate

  • isEmail (email)
    • email: String
  __FUNC.Validate.isEmail('[email protected]')
  //=> true
  • isEqual (str, compare, isDeep)
    • str: String
    • compare: String
    • [isDeep]: Boolean
  __FUNC.Validate.isEqual('123','123')
  //=> true

  __FUNC.Validate.isEqual('123',123,true)
    //=> false

Chinese IdCard Validate (length = 18)

  • isIdCard (id)
    • id: String
  __FUNC.Validate.isIdCard('51018419700106006X')
  //=> return {areaCode:510184,year:1970,month:01,day:06, gender:0}
  //Boolean(return) = true

  __FUNC.Validate.isIdCard('510184197001060060')
  //=> false
  • isNumber (num, length)
    • num: String
    • [length]: Number default is num.length
  __FUNC.Validate.isNumber('13619120030')
  //=> true

  __FUNC.Validate.isNumber('12132535x')
  //=> false

  __FUNC.Validate.isNumber('12132535x', 5)
  //=> true

Chinese PhoneNumber Validate (length = 11)

  • isPhoneNumber (num)
    • num: String
  __FUNC.Validate.isPhoneNumber('13619120030')
  //=> true

  __FUNC.Validate.isPhoneNumber('12132535')
  //=> false
  • isEmpty (str)
    • str: String
  __FUNC.Validate.isEmpty('')
  //=> true

  __FUNC.Validate.isEmpty('1')
  //=> false

Url

  • getParams (url, keyName)
    • url: String
    • [keyName]: String
  __FUNC.Url.getParams('http://test.com/user?id=23&name=alice')
  //=> {id: 23, name: alice}

  __FUNC.Url.getParams('http://test.com/user?id=23&name=alice', 'name')
  //=> alice

Storage

  • setStorage (name, value, isSession)
    • name: String
    • value: String
    • isSession: Boolean
  __FUNC.Storage.setStorage('age','18')
  //=> sessionStorage.age = 18

  __FUNC.Storage.setStorage('age','19', false)
  //=> localStorage.age = 19
  • getStorage (name, isSession)
    • name: String
    • isSession: Boolean
  __FUNC.Storage.getStorage('age')
  //=> sessionStorage.age = 18

  __FUNC.Storage.getStorage('age', false)
  //=> localStorage.age = 19
  • Form.getData (name)
    • name: String
  __FUNC.Form.getData('age')
  //=> 18
  • Form.setData (name, value)
    • name: String
    • value: String
  __FUNC.Form.setData('age', 21)
  __FUNC.Form.getData('age')
  //=> 21

## License

MIT

sp-func's People

Contributors

z41z avatar

Watchers

 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.