我知道这是非常基本的,但是我认为[beego网站] [1]上的官方文档
[1]:http://beego.me/docs/mvc/model/query.md没有给出明确的方向。
我使用beego框架制作了RESTful API。如它所 promise 的,它将为我的应用程序生成基本的CRUD代码。问题是READ方法不会返回所有数据。所有数据是指表中的数据,包括与之相关的所有表中的数据。
这是生成的代码的输出(我正在用招摇的方式调用它):
{
"data": [
{
"Id": 1,
"CustomerId": {
"Id": 2,
"Name": "",
"Phone": "",
"Email": "",
"CreatedAt": "0001-01-01T00:00:00Z",
"UpdatedAt": "0001-01-01T00:00:00Z"
},
"Saldo": 2500000,
"CreatedAt": "2014-12-10T08:10:10+07:00",
"UpdatedAt": "2014-12-10T08:10:10+07:00"
}
],
"totals": 1
}
请参阅,它不会返回名称,电话和电子邮件。
所以我查看了文档,发现了这个方法RelatedSel(),但我仍然不知道如何正确使用它。
这是我的代码:
func GetAllCustomerSaldo(query map[string]string, fields []string, sortby []string, order []string,
offset int64, limit int64) (ml []interface{}, err error, totals int64) {
o := orm.NewOrm()
qs := o.QueryTable(new(CustomerSaldo))
qs.RelatedSel("CustomerId__Customers").All(&CustomerSaldo{})
...
在尝试了许多参数可能性之后,我仍然收到此错误:
Handler crashed with error unknown model/table name `Customers`
这里有人遇到我同样的问题吗?有解决方案的人吗?
最佳答案
我有一个略有不同的问题,但是我发现的解决方案也可以帮助解决此问题。我在这里找到解决方案https://github.com/astaxie/beego/issues/1258
您需要不带参数(或带有int参数的qs.RelatedSel()来响应关系选择的深度),并为每个记录手动调用LoadRelated
func GetAllCustomerSaldo(query map[string]string, fields []string, sortby []string, order []string,
offset int64, limit int64) (ml []interface{}, err error, totals int64) {
o := orm.NewOrm()
qs := o.QueryTable(new(CustomerSaldo))
qs.RelatedSel().All(&CustomerSaldo{})
...
}
o := orm.NewOrm()
for _, el := range arr {
o.LoadRelated(el, "CustomerId")
}
RelatedSel就像LeftOuterJoin