问题标签 [json-schema-faker]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
json - 具有假模式的 json 模式伪造者
我正在使用json-schema-faker并且我将它与Faker一起使用,它允许我获取随机的“真实”格式值,如电子邮件、图像 url 等。
这个方案运行良好:
但我真正想要的是,faker
将获得像属性一样的模式myPattern
。
我尝试了一些变化,但没有一个有效。
我尝试过的一些语法:
"faker": "image.city||image.food"
-
json - 使用 json-schema-faker 伪造 Json
我试图伪造一个至少下降 4 级的 JSON 模式层次结构,当我尝试使用 json-schema-faker 时,我得到的输出只有 1 级,而 2 级我看到的是 [object]。有没有办法达到所有级别并伪造数据。
添加架构
json-server - json-schema-faker 生成新数据
我是使用 json-server 和 json-schema-faker 的新手。我可以让它生成记录,但是当我发布到端点时,它发布到数据库的唯一内容是具有 id 的对象,为什么它没有其他字段(即名称、pro1、pro2 等)。任何人都可以帮忙吗?
以下是我的架构:
我的生成文件:
javascript - Why does json-schema-faker return Latin for everything?
Using the following schema:
and a very simple package.json
with the only dependency being json-schema-faker
(0.5.0.rc16), when I run the following code I see the output shown at the bottom (an example run)
OUTPUT
Why is everything in Latin? What am I doing wrong here.
javascript - 如何使用 Angular 4 及更高版本实现 JSON Schema Faker
是否可以在 Angular 中使用 JSON Schema faker 作为第三方依赖项。我尝试使用对 Angular 的依赖注入,但是在提供程序中我无法导入 jsonSchemaFaker。
角.json
jsonSchemaFaker.service.ts
app.module.ts
...
这就是我试图在我的 Angular 应用程序中注入 json schema faker 作为依赖项。我得到了 .. Uncaught ReferenceError: jsf is not defined
python - 如何每次使用 python 生成随机 json 数据?
以下代码生成随机 json 数据:
如何使其自动化,使其每次生成随机 json 数据。知道 python 中的 faker 库确实会生成随机数据。如何将它与json结合起来。