这是上下文:
我正在编写一个 Python 代码,它使用此链接中的说明将 HTML 页面转换为 PDF 文件。我现在处理 POST 请求,该请求将以 HTML 文件作为输入,并在后一个链接中精确设置一些参数。
该链接指出 HTML 输入文件必须由一些参数定义,在此示例中分组:
在这个例子中,我不明白这部分的含义是什么: "json": "[\"a\": \"b\"]"
?以及如何使其适应我的情况。
所以我正在努力解决如何精确上图中以黄色突出显示的参数。
这是问题:
有关该领域 ( cpf:inputs > params > cpf:inline > json
) 的文献状态如下:
json(string, optional)
JavaScript variables to be placed in global scope to reference while rendering the HTML.
This mechanism is intended to be used to supply data that might otherwise be retrieved using ajax requests.
The actual mechanics of accessing this content varies depending if rendering from a zip file or from a url.
When rendering from a zip file, the source collateral must include a script element such as:
<script src='./json.js' type='text/javascript'></script>
When rendering from a URL, the content of this json object is injected into the browser VM before the page is rendered.
default: {}
如果有人可以阅读并向我解释上面引用的文本的含义,那将有所帮助。谢谢!