We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://127.0.0.1:8087/api/recommend/4?&n=10&category=m&category=n 多分类筛选不生效
` func (c *GorseClient) GetItemRecommend(ctx context.Context, userId string, categories []string, writeBackType,writeBackDelay string, n, offset int) ([]string, error) {
var queryCategories string if len(categories) > 0 { queryCategories = "&category=" + strings.Join(categories, "&category=") } return request[[]string, any](ctx, c, "GET", c.entryPoint+fmt.Sprintf("/api/recommend/%s?write-back-type=%s&write-back-delay=%s&n=%d&offset=%d%s", userId, writeBackType, writeBackDelay, n, offset, queryCategories), nil)
} `
The text was updated successfully, but these errors were encountered:
No branches or pull requests
http://127.0.0.1:8087/api/recommend/4?&n=10&category=m&category=n 多分类筛选不生效
`
func (c *GorseClient) GetItemRecommend(ctx context.Context, userId string, categories []string, writeBackType,writeBackDelay string, n, offset int) ([]string, error) {
}
`
The text was updated successfully, but these errors were encountered: