猿问

错误:SQLSTATE[42S22]:未找到列:1054“where 子句”中的未知列“0”

我有一个 Laravel-Page,因为我想在数据库中的活动字段中添加“软删除”,所以我收到该错误:

emails.ERROR: SQLSTATE[42S22]: 未找到列: 1054 'where 子句' 中的未知列 '0' (SQL: select * from categorieswhere ( 0= active and 1= is active) order by nameasc)

-> 这显然会导致错误 500

我没有计划如何解决这个问题,因为看起来一切都很好。

DB布局

我的 Tags.ts 文件中有这些数据,但我不确定如何使用该名称进行过滤。我可以使用普通的字符串列表来完成此操作,但不确定如何对数组执行此操作。任何建议或帮助,如何做到这一点。


export const tags2: Array<Tag> = [{name: "Lam", superTag: true},

{name: "Eliz", superTag: false},

{name: "Cathy", superTag: true},

{name: "John", superTag: false},

{name: "James", superTag: false},

{name: "David", superTag: false}];

下面的代码适用于普通字符串列表,但不适用于数组


import { tags2 } from "./tags.data";


    this._filteredTags = this.tags.filter((v: string) =>

      v.toLowerCase().includes(filterValue.toLowerCase().trim())

    );

  }

}


拉丁的传说
浏览 75回答 1
1回答

一只名叫tom的猫

此代码导致错误。$categories = DB::table('categories')&nbsp; &nbsp; &nbsp; &nbsp; ->where(['active', 'is active'])&nbsp; &nbsp; &nbsp; &nbsp; ->orderBy('name', 'asc')&nbsp; &nbsp; &nbsp; &nbsp; ->get();Eloquent 期待你的数组所在key并value配对。由于您没有给出它,因此它用作index列名称。你应该这样放置它:$categories = DB::table('categories')&nbsp; &nbsp; &nbsp; &nbsp; ->where('active', 'is active') //will also work ->where('active', '=', 'is active')&nbsp; &nbsp; &nbsp; &nbsp; ->orderBy('name', 'asc')&nbsp; &nbsp; &nbsp; &nbsp; ->get();
随时随地看视频慕课网APP

相关分类

Html5
我要回答