gpt4 book ai didi

keystonejs - Keystonejs 列表对象的未定义 'model' 属性

转载 作者:行者123 更新时间:2023-12-03 16:32:15 35 4
gpt4 key购买 nike

<分区>

我创建了一个包含非常简单的(国家/地区)列表的示例,并根据此处的说明创建了 api 路由:https://gist.github.com/JedWatson/9741171

服务器.js:

app.get('/api/countries', keystone.middleware.api, routes.api.countries.list);

routes/api/countries.js:

import keystone from 'keystone';

export function list(req, res) {
keystone.List('Country').model.find((err, items) => {
if (err) return res.apiError('database error', err);

res.apiResponse({
countries: items
});
});
}

我收到错误消息无法读取未定义的“查找”属性,List 对象存在但它没有model 属性。有人知道为什么吗? Keystone 管理 UI 按预期工作,数据库中有多个对象。

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