mirror of
				https://github.com/gin-gonic/gin.git
				synced 2025-11-04 09:12:12 +08:00 
			
		
		
		
	Added support for OPTIONS verb
This commit is contained in:
		
							parent
							
								
									31c3b913ac
								
							
						
					
					
						commit
						5e0d560dd6
					
				
							
								
								
									
										5
									
								
								gin.go
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								gin.go
									
									
									
									
									
								
							@ -207,6 +207,11 @@ func (group *RouterGroup) PUT(path string, handlers ...HandlerFunc) {
 | 
				
			|||||||
	group.Handle("PUT", path, handlers)
 | 
						group.Handle("PUT", path, handlers)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// OPTIONS is a shortcut for router.Handle("OPTIONS", path, handle)
 | 
				
			||||||
 | 
					func (group *RouterGroup) OPTIONS(path string, handlers ...HandlerFunc) {
 | 
				
			||||||
 | 
						group.Handle("OPTIONS", path, handlers)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (group *RouterGroup) combineHandlers(handlers []HandlerFunc) []HandlerFunc {
 | 
					func (group *RouterGroup) combineHandlers(handlers []HandlerFunc) []HandlerFunc {
 | 
				
			||||||
	s := len(group.Handlers) + len(handlers)
 | 
						s := len(group.Handlers) + len(handlers)
 | 
				
			||||||
	h := make([]HandlerFunc, 0, s)
 | 
						h := make([]HandlerFunc, 0, s)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user