ユーザーが入力フィールドに入力を開始したときにのみ、入力フィールドの下に提案されたタグのリストが表示されるようにします。現在、私はこれを持っています
ヒスイ
div.form-group
input#tags.form-control(name="tags", ng-model="query")
div.form-group
ul.suggested-tags
li(ng-repeat="tag in tags | filter:query") {{tag.name}}
そしてこのJS
controller('TagsCtrl', function ($scope) {
$scope.tags = [
{
"name": "Foo",
"id": "foo"
},
{
"name": "Bar",
"id": "bar"
}
]
})
[]
if query
isにタグを設定する正しい方法は何null
ですか?