Git Product home page Git Product logo

Comments (7)

Dieyin avatar Dieyin commented on August 25, 2024 2

I have also encountered this problem. I have been trapped for two days. How can I solve it, brother

from go-proto-validators.

fidelyiu avatar fidelyiu commented on August 25, 2024 1

I have also encountered this problem. I have been trapped for two days. How can I solve it, brother

Here are the steps I took to solve the problem.

  1. First make sure your environment version is consistent with the documentation
  2. Modify the import
syntax = "proto3";
package validator.examples;
import "validator.proto";
option go_package="./YiuProto";

message InnerMessage {
  // some_integer can only be in range (0, 100).
  int32 some_integer = 1 [(validator.field) = {int_gt: 0, int_lt: 100}];
  // some_float can only be in range (0;1).
  double some_float = 2 [(validator.field) = {float_gte: 0, float_lte: 1}];
}

message OuterMessage {
  // important_string must be a lowercase alpha-numeric of 5 to 30 characters (RE2 syntax).
  string important_string = 1 [(validator.field) = {regex: "^[a-z0-9]{5,30}$"}];
  // proto3 doesn't have `required`, the `msg_exist` enforces presence of InnerMessage.
  InnerMessage inner = 2 [(validator.field) = {msg_exists : true}];
}
  1. Execute the correct command line
protoc   \
        -I=F:/GoCode/pkg/mod/github.com/mwitkow/[email protected]/  \
        -I=.  \
        --go_out=.  \
        --go_opt=paths=source_relative  \
        --govalidators_out=.  \
        --govalidators_opt=paths=source_relative  \
        *.proto

Use the -I argument to identify where import needs to be found for protoc compilation.

from go-proto-validators.

payalord avatar payalord commented on August 25, 2024

Actually this error happened on go version: 1.12 too, I just upgraded it to 1.13. So for both of this version this error happens.

from go-proto-validators.

liuxuisme avatar liuxuisme commented on August 25, 2024

I also encountered, how to solve this problem

from go-proto-validators.

Helcaraxan avatar Helcaraxan commented on August 25, 2024

Hello @payalord and @liuxuisme.

Thank you for raising the issue!

Would it be possible to get a bit more information about the manner in which you are both invoking the protoc compile? With the information that you currently provide I can't narrow down the list of potential causes of the error that you are seeing. And these potential causes cover a too vast area to explicitly list them up front.

Ideally I would have:

  • The folder structure that contains the proto files you are compiling.
  • The exact protoc command you are invoking.
  • The output of go env when run at the location where you called
    go get -u github.com/golang/protobuf/protoc-gen-go
    

from go-proto-validators.

liuxuisme avatar liuxuisme commented on August 25, 2024

Hello @payalord and @liuxuisme.

Thank you for raising the issue!

Would it be possible to get a bit more information about the manner in which you are both invoking the protoc compile? With the information that you currently provide I can't narrow down the list of potential causes of the error that you are seeing. And these potential causes cover a too vast area to explicitly list them up front.

Ideally I would have:

  • The folder structure that contains the proto files you are compiling.
  • The exact protoc command you are invoking.
  • The output of go env when run at the location where you called
    go get -u github.com/golang/protobuf/protoc-gen-go
    

My own problem. This tool is great, my bro

from go-proto-validators.

Helcaraxan avatar Helcaraxan commented on August 25, 2024

That's good to hear @liuxuisme. Great that you got solved the issue. 👍

from go-proto-validators.

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.