這篇文章跟大家分享15個專案工程必備的JavaScript程式碼片段,希望對大家有幫助!
同時適用於word,ppt等瀏覽器不會預設執行預覽的文件,也可以用於下載後端介面傳回的串流數據,請參閱3
//下载一个链接 function download(link, name) { if(!name){ name=link.slice(link.lastIndexOf('/') + 1) } let eleLink = document.createElement('a') eleLink.download = name eleLink.style.display = 'none' eleLink.href = link document.body.appendChild(eleLink) eleLink.click() document.body.removeChild(eleLink) } //下载excel download('http://111.229.14.189/file/1.xlsx')
場景:我想下載一些DOM內容,我想下載一個JSON檔
/** * 浏览器下载静态文件 * @param {String} name 文件名 * @param {String} content 文件内容 */ function downloadFile(name, content) { if (typeof name == 'undefined') { throw new Error('The first parameter name is a must') } if (typeof content == 'undefined') { throw new Error('The second parameter content is a must') } if (!(content instanceof Blob)) { content = new Blob([content]) } const link = URL.createObjectURL(content) download(link, name) } //下载一个链接 function download(link, name) { if (!name) {//如果没有提供名字,从给的Link中截取最后一坨 name = link.slice(link.lastIndexOf('/') + 1) } let eleLink = document.createElement('a') eleLink.download = name eleLink.style.display = 'none' eleLink.href = link document.body.appendChild(eleLink) eleLink.click() document.body.removeChild(eleLink) }
使用方式:
downloadFile('1.txt','lalalallalalla') downloadFile('1.json',JSON.stringify({name:'hahahha'}))
資料是後端以介面的形式傳回的,呼叫# 1
中的download方法進行下載
download('http://111.229.14.189/gk-api/util/download?file=1.jpg') download('http://111.229.14.189/gk-api/util/download?file=1.mp4')
圖片、pdf等文件,瀏覽器會默認執行預覽,不能調用download方法進行下載,需要先把圖片、pdf等檔案轉成blob,再呼叫download方法進行下載,轉換的方式是使用axios請求對應的連結
//可以用来下载浏览器会默认预览的文件类型,例如mp4,jpg等 import axios from 'axios' //提供一个link,完成文件下载,link可以是 http://xxx.com/xxx.xls function downloadByLink(link,fileName){ axios.request({ url: link, responseType: 'blob' //关键代码,让axios把响应改成blob }).then(res => { const link=URL.createObjectURL(res.data) download(link, fileName) }) }
注意:會有同源策略的限制,需要配置轉送
在一定時間間隔內,多次呼叫一個方法,只會執行一次.
這個方法的實作是從Lodash函式庫中copy的
/** * * @param {*} func 要进行debouce的函数 * @param {*} wait 等待时间,默认500ms * @param {*} immediate 是否立即执行 */ export function debounce(func, wait=500, immediate=false) { var timeout return function() { var context = this var args = arguments if (timeout) clearTimeout(timeout) if (immediate) { // 如果已经执行过,不再执行 var callNow = !timeout timeout = setTimeout(function() { timeout = null }, wait) if (callNow) func.apply(context, args) } else { timeout = setTimeout(function() { func.apply(context, args) }, wait) } } }
使用方式:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> </head> <body> <input id="input" /> <script> function onInput() { console.log('1111') } const debounceOnInput = debounce(onInput) document .getElementById('input') .addEventListener('input', debounceOnInput) //在Input中输入,多次调用只会在调用结束之后,等待500ms触发一次 </script> </body> </html>
如果第三個參數immediate
傳true,則會立即執行一次調用,後續的調用不會在執行,可以自己在程式碼中試試看
多次呼叫方法,依照一定的時間間隔執行
這個方法的實作也是從Lodash函式庫中copy的
/** * 节流,多次触发,间隔时间段执行 * @param {Function} func * @param {Int} wait * @param {Object} options */ export function throttle(func, wait=500, options) { //container.onmousemove = throttle(getUserAction, 1000); var timeout, context, args var previous = 0 if (!options) options = {leading:false,trailing:true} var later = function() { previous = options.leading === false ? 0 : new Date().getTime() timeout = null func.apply(context, args) if (!timeout) context = args = null } var throttled = function() { var now = new Date().getTime() if (!previous && options.leading === false) previous = now var remaining = wait - (now - previous) context = this args = arguments if (remaining <= 0 || remaining > wait) { if (timeout) { clearTimeout(timeout) timeout = null } previous = now func.apply(context, args) if (!timeout) context = args = null } else if (!timeout && options.trailing !== false) { timeout = setTimeout(later, remaining) } } return throttled }
第三個參數還有點複雜,options
可以根據不同的值來設定不同的效果:
範例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> </head> <body> <input id="input" /> <script> function onInput() { console.log('1111') } const throttleOnInput = throttle(onInput) document .getElementById('input') .addEventListener('input', throttleOnInput) //在Input中输入,每隔500ms执行一次代码 </script> </body> </html>
#去移除物件中value為空(null,undefined,'')的屬性,舉個栗子:
let res=cleanObject({ name:'', pageSize:10, page:1 }) console.log("res", res) //输入{page:1,pageSize:10} name为空字符串,属性删掉
使用場景是:後端列表查詢接口,某個字段前端不傳,後端就不根據那個字段篩選,例如name
不傳的話,就只根據page
和pageSize
篩選,但是前端查詢參數的時候(vue或react)中,往往會這樣定義
export default{ data(){ return { query:{ name:'', pageSize:10, page:1 } } } } const [query,setQuery]=useState({name:'',page:1,pageSize:10})
傳送資料給後端的時候,要判斷某個屬性是不是空字串,然後給後端拼參數,這塊邏輯抽離出來就是cleanObject
,程式碼實現如下
export const isFalsy = (value) => (value === 0 ? false : !value); export const isVoid = (value) => value === undefined || value === null || value === ""; export const cleanObject = (object) => { // Object.assign({}, object) if (!object) { return {}; } const result = { ...object }; Object.keys(result).forEach((key) => { const value = result[key]; if (isVoid(value)) { delete result[key]; } }); return result; };
let res=cleanObject({ name:'', pageSize:10, page:1 }) console.log("res", res) //输入{page:1,pageSize:10}
使用場景:上傳檔案判斷後綴名
/** * 获取文件后缀名 * @param {String} filename */ export function getExt(filename) { if (typeof filename == 'string') { return filename .split('.') .pop() .toLowerCase() } else { throw new Error('filename must be a string type') } }
使用方式
getExt("1.mp4") //->mp4
export function copyToBoard(value) { const element = document.createElement('textarea') document.body.appendChild(element) element.value = value element.select() if (document.execCommand('copy')) { document.execCommand('copy') document.body.removeChild(element) return true } document.body.removeChild(element) return false }
使用方式:
//如果复制成功返回true copyToBoard('lalallala')
#原則:
#建立一個textare元素並呼叫select()方法選取
/** * 休眠xxxms * @param {Number} milliseconds */ export function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)) } //使用方式 const fetchData=async()=>{ await sleep(1000) }
11. 產生隨機字串
/** * 生成随机id * @param {*} length * @param {*} chars */ export function uuid(length, chars) { chars = chars || '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' length = length || 8 var result = '' for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)] return result }
//第一个参数指定位数,第二个字符串指定字符,都是可选参数,如果都不传,默认生成8位 uuid()
使用場景:用於前端產生隨機的ID,畢竟現在的Vue和React都需要綁定key
12. 簡單的深拷貝
/** *深拷贝 * @export * @param {*} obj * @returns */ export function deepCopy(obj) { if (typeof obj != 'object') { return obj } if (obj == null) { return obj } return JSON.parse(JSON.stringify(obj)) }
const person={name:'xiaoming',child:{name:'Jack'}} deepCopy(person) //new person
13. 陣列去重
/** * 数组去重 * @param {*} arr */ export function uniqueArray(arr) { if (!Array.isArray(arr)) { throw new Error('The first parameter must be an array') } if (arr.length == 1) { return arr } return [...new Set(arr)] }
原理是利用Set中不能出現重複元素的特性uniqueArray([1,1,1,1,1])//[1]
14. 物件轉換為FormData物件
/** * 对象转化为formdata * @param {Object} object */ export function getFormData(object) { const formData = new FormData() Object.keys(object).forEach(key => { const value = object[key] if (Array.isArray(value)) { value.forEach((subValue, i) => formData.append(key + `[${i}]`, subValue) ) } else { formData.append(key, object[key]) } }) return formData }
使用場景:上傳檔案時我們要新建一個FormData對象,然後有多少個參數就append多少次,使用該函數可以簡化邏輯使用方式:let req={ file:xxx, userId:1, phone:'15198763636', //... } fetch(getFormData(req))15.保留到小數點以後n位
// 保留小数点以后几位,默认2位 export function cutNumber(number, no = 2) { if (typeof number != 'number') { number = Number(number) } return Number(number.toFixed(no)) }
使用場景:JS的浮點數超長,有時候頁面顯示時需要保留2位小數
說明:###以上程式碼片段都經過專案檢測,可以放心使用在專案中。 #########原文網址:https://juejin.cn/post/7000919400249294862#heading-3######作者:_紅領巾#########更多程式相關知識,請訪問:###編程視頻###! ! ###以上是15個值得收藏的實用JavaScript程式碼片段(專案必備)的詳細內容。更多資訊請關注PHP中文網其他相關文章!