Giter Club home page Giter Club logo

Comments (11)

dosubot avatar dosubot commented on June 18, 2024 2

🤖

Hey there @CaoYan1! 🖐️

I'm Dosu, a friendly bot here to help you out while waiting for a human maintainer. I'm your go-to for solving bugs, answering questions, and helping you become the best contributor you can be! 🚀

Just wanted to say hi and let you know I'm here for you. Hang tight, we'll get through your issue together! 💪😀

Based on the information you've provided, it seems like you're encountering an issue where the form.EncodeValues(msg) function is returning an error when it encounters a repeated custom message in your request, causing the rest of the fields to be ignored.

This behavior is due to how the form.EncodeValues(msg) function handles unsupported field types. When it encounters an unsupported field type, it returns an error and stops processing the rest of the fields. This is why your id field is being ignored. You can see this in the encodeMessage function in the encoding/form/proto_encode.go file:

func encodeMessage(msgDescriptor protoreflect.MessageDescriptor, value protoreflect.Value) (string, error) {
	// ...
	default:
		return "", fmt.Errorf("unsupported message type: %q", string(msgDescriptor.FullName()))
	}
}

However, I found a similar issue in the Kratos repository that was resolved: 当message中有自定义list消息且url中有参数时,使用生成的http client无法生成正确的url. This issue was addressed in the following pull request: 修复地址栏参数.

Based on this, it seems like the Kratos team has made some changes to handle this scenario. I recommend checking out these resources to see if they can help resolve your issue. If you're still encountering problems, could you please provide more details about your use case and the exact error message you're seeing? This will help me better understand the issue and provide a more accurate solution.

Sources


This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

from kratos.

kvii avatar kvii commented on June 18, 2024 1

😭 I'm busy now.

from kratos.

CaoYan1 avatar CaoYan1 commented on June 18, 2024

My Kratos version is latest(2.7.2) and doesn't work still

from kratos.

kvii avatar kvii commented on June 18, 2024

Can you provide your http client code? I try to reproduce your case, but there was no issue found.

Here is my reproduce repo.

# send http request
curl http://localhost:8000/my-api/1 -X POST -H 'Content-Type: application/json' -d '{"msg":[{}]}'

# console
id:"1"  msg:{}

from kratos.

CaoYan1 avatar CaoYan1 commented on June 18, 2024

Based on your repo, you can try this code. I can reproduce this issue. @kvii

func TestHttpClient(t *testing.T) {
	client, _ := http.NewClient(context.Background(), http.WithEndpoint("localhost:8000"))
	c := NewMyServiceHTTPClient(client)
	resp, err := c.Call(context.Background(), &Request{
		Id: "id",
		Msg: []*MsgInline{
			{},
		},
	})
        // will return 404 error
	fmt.Println(resp, err)
}

from kratos.

kvii avatar kvii commented on June 18, 2024

Oh, this is an issue of kratos http client, not server. I pushed a commit to my repo, add tests for this issue at here.

Source codes:

  • Generated http client side code in my reproduce repo:

https://github.com/kvii/issue3141/blob/dd94e68294372d6194fc440f41021ae4ea7aa98b/api/helloworld/v1/greeter_http.pb.go#L72-L73

  • Codes in binding.EncodeURL:

func EncodeURL(pathTemplate string, msg interface{}, needQuery bool) string {
if msg == nil || (reflect.ValueOf(msg).Kind() == reflect.Ptr && reflect.ValueOf(msg).IsNil()) {
return pathTemplate
}
queryParams, _ := form.EncodeValues(msg)

from kratos.

CaoYan1 avatar CaoYan1 commented on June 18, 2024

Cool! Do you have a plan to fix it?

from kratos.

CaoYan1 avatar CaoYan1 commented on June 18, 2024

I'd like to help you.

from kratos.

kvii avatar kvii commented on June 18, 2024

I've created a PR for this issue. But the code style is terrible.

from kratos.

web-xiaxia avatar web-xiaxia commented on June 18, 2024

这个问题 #2805 应该是解决了的

from kratos.

kratos-ci-bot avatar kratos-ci-bot commented on June 18, 2024

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


This issue https://github.com/go-kratos/kratos/pull/2805 should be solved

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.