You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

common-fronted-api

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

common-fronted-api

实际业务中必须用到的api

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

common-fronted-api

业务开发中,我们经常会使用一些公共的方法,何不抽离出来依此提高开发效率

数组校验

使用场景:当对后端传递过来的字段判断是否存在、是否是数组、是不是为空


const isValidArray = (list) => {
  return list && Array.isArray(list) && list.length
}

对象校验

使用场景:当对后端传递过来的字段判断是否存在、是否是对象、是不是为空


const isValidObject = (list) => {
  return list && Object.prototype.toString.call(list) === '[object Object]' && Object.keys(list).length
}

地址解析

使用场景:我们想要拿到地址栏的参数


const getQueryValue = () => {
  const url = window.location.href
  const data = qs.parse(url.split('?')[1])
  return data
}

isValidObject判断存在一个问题 很多时候我们还要增加一个判断条件

那是因为我们初始化了这个对象 所以肯定不为空,所以使用这个方法判断也没有任何意义,在ts检测中 已经弥补了这一点 所以单单用id来判断就行 不然ts怎么叫静态类型

target_assistant: {
        name: '',
        assistant_id: '',
        term_id: ''
      }

Keywords

api

FAQs

Package last updated on 23 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts