Results 4 issues of linkxzhou

Test Code: ``` package tests import ( "fmt" "testing" jsoniter "github.com/json-iterator/go" ) var json2 = jsoniter.ConfigDefault type Node struct { Name string `json:"name"` Next *Node `json:"next"` } func TestJson2(t *testing.T)...

## What is the problem your feature solves, or the need it fulfills? Allows HTTP filters to be implemented in scripting languages such as JavaScript/TypeScript. ## Describe the solution you'd...