Git Product home page Git Product logo

Comments (3)

dosubot avatar dosubot commented on May 28, 2024 3

🤖

感谢您的反馈。我看到您在使用Kratos v2.7.1版本,但是最新的版本是v2.7.2。我想知道您是否尝试过在最新版本上复现这个问题?

另外,我需要更多的信息来帮助我理解这个问题。您能提供一些关于您的环境的更多信息吗?例如,您正在使用的操作系统和版本,以及您的Go环境配置等。

最后,如果可能的话,能否提供一些更详细的代码示例,以便我更好地理解您的问题?这将有助于我更准确地找到问题的原因。

期待您的回复。


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.

dosubot avatar dosubot commented on May 28, 2024 2

Hi, @jeanh0w,

I'm helping the Kratos team manage their backlog and am marking this issue as stale. The issue concerns the back end parsing an empty string as nil instead of an empty string in Kratos version v2.7.1 and Go version go1.21.1. There have been discussions about checking if the issue persists in the latest version, v2.7.2, and requests for more information about the user's environment. Additionally, there are questions about a specific code change that may have caused the issue and links to the relevant code sections for further investigation.

Could you please confirm if this issue is still relevant to the latest version of the Kratos repository? If it is, please let the Kratos team know by commenting on the issue. Otherwise, feel free to close the issue yourself, or the issue will be automatically closed in 7 days.

Thank you for your understanding and cooperation. If you have any further questions or updates, feel free to reach out.

from kratos.

kvii avatar kvii commented on May 28, 2024

@tonybase Why did you add a if value == "" { return nil } is this #2848? It caused this issue. changes detail

See the code below, should we return errors in parseField when "fd" is a non-string kind and value is ""?

func populateField(fd protoreflect.FieldDescriptor, v protoreflect.Message, value string) error {
if value == "" {
return nil
}
val, err := parseField(fd, value)
if err != nil {
return fmt.Errorf("parsing field %q: %w", fd.FullName().Name(), err)
}
v.Set(fd, val)
return nil
}

func parseField(fd protoreflect.FieldDescriptor, value string) (protoreflect.Value, error) {
switch fd.Kind() {
case protoreflect.BoolKind:
v, err := strconv.ParseBool(value)
if err != nil {
return protoreflect.Value{}, err
}
return protoreflect.ValueOfBool(v), nil

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.