Giter Club home page Giter Club logo

Comments (6)

jorgen avatar jorgen commented on June 19, 2024

This will not work since there is no metadata on the struct. You will have to add a JS_OBJ macro or a JS_OBJ_EXT.

I think these kind of questions a well suited for in the new "Discussions" forum. Check it out here:
https://github.com/jorgen/json_struct/discussions

from json_struct.

yanzixiang avatar yanzixiang commented on June 19, 2024

This will not work since there is no metadata on the struct. You will have to add a JS_OBJ macro or a JS_OBJ_EXT.

I think these kind of questions a well suited for in the new "Discussions" forum. Check it out here: https://github.com/jorgen/json_struct/discussions

I have add JS_OBJ macro,
the result is same.

from json_struct.

jorgen avatar jorgen commented on June 19, 2024

Oh! I see what you mean. So the names of the JSON members will be the same as the C++ struct members when you use the JS_OBJ macro. If you don't want to use the same name then you will have to use the JS_MEMBER_WITH_NAME or JS_MEMBER_ALIASES macro style. Its use is described in this example:
https://github.com/jorgen/json_struct/blob/master/examples/02_alias.cpp

So your struct a will make a json object with a member called a "ie: { "a": 19 }, but your struct b has a member called b. And when parsing the JSON into the struct b it cant find a member called a, only a member called b.

from json_struct.

jorgen avatar jorgen commented on June 19, 2024

Also in your example you are trying to send in the type name, ie a and not s_a and b not s_b.

from json_struct.

yanzixiang avatar yanzixiang commented on June 19, 2024

Also in your example you are trying to send in the type name, ie a and not s_a and b not s_b.

Yes ,you are right.
but i think a user ,like me, want an error when it can NOT find the member called a.

from json_struct.

yanzixiang avatar yanzixiang commented on June 19, 2024

https://github.com/jorgen/json_struct/blob/master/tests/json-struct-optional.cpp

  JS::ParseContext context(json, sizeof(json));
  context.allow_missing_members = false;
  context.allow_unnasigned_required_members = false;

try this.

from json_struct.

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.