问题标签 [angular-schema-form]

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.

0 投票
1 回答
3555 浏览

javascript - 如何在 Angular js 中动态生成表单?

我正在使用这个https://github.com/Textalk/angular-schema-form插件来生成我的表单不会显示。我研究了所有文档并添加了所有需要的 js 我没有收到任何错误但它不显示为什么? http://plnkr.co/edit/FO5iEs6ulmP3aR0PW4nt?p=preview

0 投票
1 回答
1001 浏览

javascript - 如何在使用角度的表单中使用模糊事件..?

我使用此链接制作表格

我能够在按钮单击时验证表单,但是有方法可以验证onBlur,但我不明白我将如何实现这一点。

这是我的笨蛋

0 投票
1 回答
488 浏览

javascript - 如何在 Angular js 中删除这个 Unexpected token 错误?

我试图在表单中显示不同的消息。我在学习本文档时从 json 制作表单 https://github.com/Textalk/angular-schema-form/blob/master/docs/index.md#validation-messages

Plunker http://plnkr.co/edit/ZNJO3x3IqajjdMNStJMF?p=preview

当我像文档中给出的那样写这个时,我无法查看页面以及收到错误?

当用户有效验证时,我需要显示不同的味精吗?

0 投票
2 回答
1874 浏览

javascript - 为什么 onchange 事件不会在 Angular js 中触发?

我正在从 json 制作一个表单。我在tv4.js中使用具有依赖性的angular-schema-form。我从这个 https://github.com/Textalk/angular-schema-form/blob/master/docs/index学习.md#global-options 我们可以在元素上应用 onchange 。但是当我应用它时不调用它也没有给出任何错误,为什么?Plunker http://plnkr.co/edit/wbziK5aRUg69JuwXDoVy?p=preview

我是这样用的

装订有问题吗?

0 投票
1 回答
1687 浏览

angularjs - 为什么选择值不使用角度显示?

我正在使用 Angular js。并将 json 转换为表单我不知道为什么选择值或选择选项不显示.. 这是 plunker http://plnkr.co/edit/wbziK5aRUg69JuwXDoVy?p=preview 问题步骤:运行应用程序和更改它不会显示的下拉值。但是当您按下按钮然后更改它的下拉值它将显示..为什么?

我正在使用这个文档:https ://github.com/Textalk/angular-schema-form/blob/master/docs/index.md#global-options

0 投票
1 回答
560 浏览

angular-schema-form - angular-schema-form 没有构建并且没有错误

我正在尝试使用 angular-schema-form 构建一个简单的测试应用程序,但没有成功。

然后代码实际上是来自https://github.com/Textalk/angular-schema-form的示例的复制粘贴,它不起作用。有人看到上述版本有任何问题吗?

0 投票
3 回答
361 浏览

angularjs - 使用Angular SchemaForm时如何知道哪个字段是脏的?

使用 Angular SchemaForm 时如何知道哪个字段是脏的。在调试器中找不到任何属性表明它。

谢谢

0 投票
3 回答
576 浏览

javascript - 如何将 javascript 数组更改为 angular-schema-form 的 JSON 对象?

我需要一些帮助,请转换我准备由 angular-schema-form 使用的 javascript 生成的数组(需要 JSON 对象)。

我使用 for 循环创建了一个数组,其中包含从 $http 请求中检索到的一些字段项。

但是,我可以毫无问题地创建数组,当我现在尝试为 angular-schema-form 对象准备它时,我在将其转换为所需的 JSON 对象格式时遇到了问题。

我像这样在javascript中创建数组,

这是数组的 console.log。

我尝试使用 JSON.stringify 将上述内容转换为 JSON,但这会返回一个空结果。

我也尝试将数组传递给 angula.toJson 但我也得到一个空的结果。

如果您对我有任何指导,请遵循它,我们将不胜感激。

谢谢乙

0 投票
1 回答
3842 浏览

css - How to style form element in the angular-schema-form schema and not the form?

I am building a form using the awesome angular-schema-form. I am able to create my form schema object quite successfully. I am wanting (hoping) to be able to set all the form components in the schema using the x-schema-form property in the schema object.

I am able to specify the type and the titleMap's for selects all perfectly. However where I am having an issue is assigning a style to the element using the "x-schema-form" - it just seems to be being ignored.

So when I do the following (Note I have the Ionic Framework)

The "style" is not getting passed to the form. If I pass the style in the $scope.form [] then I get the style. I am however trying to do this all in the schema as it would be much easier for me to do it in one place due to the nature in which I get the list of form elements.

Any advice on this would be greatly appreciated.

Thanks BrentR

0 投票
1 回答
1828 浏览

javascript - Angular Schema Form - 自定义对象编辑器

我正在尝试使用 angular-schema-form 框架创建一个简单的“位置编辑器”。计划是构建一个带有可拖动图钉的地图编辑器小部件。

该项目的 json 模式相对简单:

据我所知: http ://plnkr.co/edit/tnSdxwrEmRYMNKFzep9f?p=preview

如您所见,编辑名称可以正常工作,但编辑两个位置字段中的任何一个都不会更新模型(除非您清除输入)并且验证仅发生在两个输入元素中的第二个上。

我不确定下一步该往哪里看——我找不到对象编辑器的任何其他示例(github 上的所有示例都涉及编辑单个“字符串”项)。

这是否支持,如果支持,我哪里出错了?

干杯!