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
使用readme.md 例子测试convert_js_to_dict 异常
from chartspy import Echarts, Tools, Js js_str = """ { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [{ data: [820, 932, 901, 934, 1290, 1330, 1320], type: 'line', smooth: true }] } """ options = Tools.convert_js_to_dict(js_str, print_dict=False) Echarts(options, height='300px', width='300px').render_notebook()
异常信息: raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 3 column 16 (char 31)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
使用readme.md 例子测试convert_js_to_dict 异常
异常信息:
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 3 column 16 (char 31)
The text was updated successfully, but these errors were encountered: