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
I use mysql workbench export data to json file,when I use jsonpyes to import the json file,it display some error:
JSON data not valid with error Expecting value: line 2 column 1 (char 69)
my json file:
[{"id":"10155", "username":"", "password":""}, {"id":"10156", "username":"", "password":""}, {"id":"10157", "username":"", "password":""}, {"id":"10158", "username":"", "password":""}, {"id":"10159", "username":"", "password":""}, {"id":"10160", "username":"", "password":""}, {"id":"10161", "username":"", "password":""}, {"id":"10162", "username":"", "password":""},
I don't know how the stand json file should be?
The text was updated successfully, but these errors were encountered:
@tdyhacker hey, actually the JSON file you got should be without symbol "[" and without "," at the end
The valid format for your scenario could be like this.
{"id":"10155", "username":"", "password":""} {"id":"10156", "username":"", "password":""} {"id":"10157", "username":"", "password":""} {"id":"10158", "username":"", "password":""} {"id":"10159", "username":"", "password":""} {"id":"10160", "username":"", "password":""} {"id":"10161", "username":"", "password":""} {"id":"10162", "username":"", "password":""}
Feel free to contact me
Sorry, something went wrong.
@tdyhacker And you can check this file https://github.com/xros/jsonpyes/blob/master/raw_data.json for instance. This is a valid JSON file shipped with jsonpyes.
jsonpyes
No branches or pull requests
I use mysql workbench export data to json file,when I use jsonpyes to import the json file,it display some error:
my json file:
I don't know how the stand json file should be?
The text was updated successfully, but these errors were encountered: