gpt4 book ai didi

javascript - Meteor-AutoForm:如何根据另一个控件更新选择选项

转载 作者:数据小太阳 更新时间:2023-10-29 05:43:18 25 4
gpt4 key购买 nike

我一直在寻找 SO 问题的答案,这些问题应该非常简单,但对于我来说我无法弄清楚。

基本上我有一个带有两个选择控件的 meteor-autoform:

<template name="processFormTemplate">
{{#autoForm id="processForm" collection="Processes" type=formAction doc=doc validation="blur"}}
<div class="col-md-12">
{{> afQuickField name="elementId" options=elements}}
{{> afQuickField name="categoryId" options=categories}}
{{> afQuickField name="title"}}
{{> afQuickField name="desc" rows=4}}
</div>
{{>formButtons}}
{{/autoForm}}
</template>

然后这些有助手来填充选项:

Template.processFormTemplate.helpers({
elements: function() {
return getFormElements();
},
categories: function(elementId) {
return getFormCategories(this.doc.elementId);
}
});

lib/methods.js

 getFormElements = function() {

var options = [];

Elements.find({}, {sort: {ref:1}}).forEach(function (element) {
options.push({
label: element.title, value: element._id
});
});

return options;

};

getFormCategories = function(elementId) {

var options = [];
var filter = {};

if (!isBlank(elementId)) {
filter.elementId = elementId;
}

Categories.find(filter, {sort: {ref:1}}).forEach(function (d) {
options.push({
label: d.title, value: d._id
});
});

return options;

};

现在我知道这是行不通的,因为助手不是被动的,但我不知道如何改变这种行为。我也试过 Hook 到“更改”事件,但由于某种原因这从未触发:

Template.processFormTemplate.events({
'change #elementId': function(e) {
console.log($('[name="elementId"]').val() + ' is now selected');
}
});

要求的行为是,当在第一个列表中选择新的 elementId 时,第二个列表中的选项列表应根据所选的 elementId 进行刷新。

非常感谢任何帮助。

谢谢,大卫

最佳答案

我之前遇到过同样的问题,花了我几个小时才解决。您必须使用简单的架构来获取所选选项的值,就像这样使用自动表单的 api 调用 Autoform.getFieldValue:

Schemas.Store = new SimpleSchema({
center: {
type: String,
optional: true,
autoform: {
type: "select",
options: function () {
return Centers.find().map(function (c) {
return {label: c.name, value: c._id};
});
}
}
},
region: {
type: String,
optional: true,
autoform: {
type: "select",
options: function () {
if (Meteor.isClient) {
var docId = '';

docId = AutoForm.getFieldValue('storesForm', 'center');


return Regions.find({center: docId}).map(function (c) {
return {label: c.name + ' (' + c.code + ')', value: c._id};
});
}
}
}
},
store_name: {
type: String
}
});

顺便说一句,由于在 5.0 中使用 Autoform.getFieldValue 时遇到问题,我仍在使用 autoform@4.2.2

我已经向 aldeed 报告了 5.0.3 中的问题:https://github.com/aldeed/meteor-autoform/issues/785#issuecomment-84600515

关于javascript - Meteor-AutoForm:如何根据另一个控件更新选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28685163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com