npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@xyzi/unimixin

v1.1.0

Published

uni-app and mixin plugin to simplify request.

Downloads

19

Readme

uniMixin

uni-app&web

  • vue项目中常规请求的混入插件。
  • vue3项目中支持Composition API。
  • 支持全局/局部请求前置/后置拦截

执行周期

  • 请求-响应
全局before --> 全局xxxBefore --> 页面before --> 全局/默认useRequest
全局after  --> 页面after  --> 全局xxxAfter  --> State.data赋值  -->
页面finish --> 全局xxxFinish --> 全局finish
  • 请求-异常
请求异常    --> 页面finish --> 全局xxxFinish --> 全局finish

注意

  • Internet Explorer和较老的浏览器中不支持,所以请谨慎使用。
  • 默认使用uni.request请求方式,其他方式请在全局定义中的useRequest中自行定义。

文档地址

插件引入

  • NPM
npm install @xyzi/unimixin
  • main.js
import uniMixin from "@xyzi/unimixin";
Vue.use(uniMixin);

Option API

get请求

export default {
	data(){
		return {
			/**** 默认生成data *****/
			getState: {
				path: undefined,  // 必填项,请求路径
				params: undefined,// 选填,请求参数
				data: undefined,  // 选填,请求结果
				loading: false,   // 不填,请求状态
				request: undefined// 不填,请求实例
			}
		}
	},
	methods:{
		/**** 默认生成请求方法 *****/
		getRequest(params){},     // method: "GET"
		/**** 选填方法 *****/
		getBefore(params){}, // 请求前
		getAfter(params){},  // 请求后
		getFinish(params){}, // 请求完成
	},
	uniMixin: "get",
}

post请求

export default {
	data(){
		return {
			/**** 默认生成data *****/
			postState: {
				path: undefined,  // 必填项,请求路径
				params: undefined,// 选填,请求参数
				data: undefined,  // 选填,请求结果
				loading: false,   // 不填,请求状态
				request: undefined// 不填,请求实例
			}
		}
	},
	methods:{
		/**** 默认生成请求方法 *****/
		postRequest(params){},     // method: "POST"
		/**** 选填方法 *****/
		postBefore(params){}, // 请求前
		postAfter(params){},  // 请求后
		postFinish(params){}, // 请求完成
	},
	uniMixin: "post",
}

多请求

export default {
	data(){
		return {
			/**** 默认生成data *****/
			getState: {
				path: undefined,  // 必填项,请求路径
				params: undefined,// 选填,请求参数
				data: undefined,  // 选填,请求结果
				loading: false,   // 不填,请求状态
				request: undefined// 不填,请求实例
			},
			postState: {
				path: undefined,  // 必填项,请求路径
				params: undefined,// 选填,请求参数
				data: undefined,  // 选填,请求结果
				loading: false,   // 不填,请求状态
				request: undefined// 不填,请求实例
			}
		}
	},
	methods:{
		/**** 默认生成请求方法 *****/
		getRequest(params){},     // method: "GET"
		postRequest(params){},     // method: "POST"
		/**** 选填方法 *****/
		getBefore(params){}, // 请求前
		getAfter(params){},  // 请求后
		getFinish(params){}, // 请求完成
		postBefore(params){},// 请求前
		postAfter(params){}, // 请求后
		postFinish(params){},// 请求完成
	},
	uniMixin: ["get", "post"],
}

Composition API

get请求

import {useUniMixin} from "@xyzi/unimixin";
export default {
	setup(){
		const {
			getState,
			getRequest,        //method:'GET',key:'get'
			getIntercept
		} = useUniMixin({
			path: undefined,  // 必填项,请求路径
			params: undefined,// 选填,请求参数
			data: undefined,  // 选填,请求结果
			//loading: false,    不填,请求状态
			//request: undefined 不填,请求实例
		})
		
		getIntercept('before',function(){}) // 请求前
		getIntercept('after',function(){})  // 请求后
		getIntercept('finish',function(){}) // 请求完成
		
		return {
			getState,
			getRequest,
		}
	}
}

post请求

import {useUniMixin} from "@xyzi/unimixin";
export default {
	setup(){
		const {
			postState,
			postRequest,        
			postIntercept
		} = useUniMixin({
			method: 'POST',   // 
			path: undefined,  // 必填项,请求路径
			params: undefined,// 选填,请求参数
			data: undefined,  // 选填,请求结果
			//loading: false,    不填,请求状态
			//request: undefined 不填,请求实例
		})
		
		postIntercept('before',function(){}) // 请求前
		postIntercept('after',function(){})  // 请求后
		postIntercept('finish',function(){}) // 请求完成
		
		return {
			postState,
			postRequest,
		}
	}
}