gpt4 book ai didi

node.js - 在 keystone.js 管理 UI 中显示来自其他模型(集合)的字段?

转载 作者:可可西里 更新时间:2023-11-01 10:03:55 26 4
gpt4 key购买 nike

我有两个模型

/**
* Page Model
* =============
*/

var Page = new keystone.List('Page');

Page.add({
name: { type: String, required: true },
pid: { type: String, required: true , default:"123" },
phone: { type: String },
keyword : {type: Types.Relationship, ref: 'Keyword' , many: true},
searchvol : {type: Types.Relationship, ref: 'Keyword' , many: true},
pageType: { type: Types.Select, options: [
{ value: 'message', label: 'Just leaving a message' },
{ value: 'question', label: 'I\'ve got a question' },
{ value: 'other', label: 'Something else...' }
] },
createdAt: { type: Date, default: Date.now }
});

Page.relationship({ path: 'keywords', ref: 'Keyword', refPath: 'keyword' });
Page.relationship({ path: 'keywords', ref: 'Keyword', refPath: 'searchvol' });

和关键字模型

/**
* Keyword Model
* =============
*/

var Keyword = new keystone.List('Keyword');

Keyword.add({
//name: { type: String, required: true },
searchvol: { type: String },
keywordType: { type: Types.Select, options: [
{ value: 'message', label: 'brand' },
{ value: 'question', label: 'exact match' },
{ value: 'other', label: 'Something else...' }
] },
createdAt: { type: Date, default: Date.now }
});

我想在管理 UI 中包含搜索量,以便我可以使用它进行排序和过滤

但是它似乎只能包含名称字段,如果我删除该字段,它只会显示 ID。

解决此问题的唯一方法是构建一个自定义的 crud 界面来处理我的“连接”,或者存在一种使其与当前设置一起工作的方法。

这是文档的链接,我在其中找到了有关如何执行此操作的一些详细信息。 http://keystonejs.com/docs/database/#relationships

最佳答案

@RaedMarji,Keystone 总是使用 name 字段来显示引用关系。但是,在像您这样的情况下,当您没有 name 字段时,您可以映射现有字段以充当模型的名称。

只需更新您的列表定义如下:

var Keyword = new keystone.List('Keyword', {
map: { name: 'searchvol' }
});

关于node.js - 在 keystone.js 管理 UI 中显示来自其他模型(集合)的字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28428416/

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