转自:https://stackoverflow.com/questions/35835214/vue-js-failed-to-resolve-filter-key

I am following this tutorial https://laracasts.com/series/search-as-a-service/episodes/2 and got stuck on the following error

[Vue warn]: Invalid expression. Generated function body:  scope.keyup:scope.search
[Vue warn]: Failed to resolve filter: key

shown in console.

This is the code.

<input type="text" v-model="query" v-on="keyup: search | key 'enter'">
<div class="results">
<article v-for="movie in movies">
<h2> @{{ movie.name }}</h2>
<h4> @{{ movie.rating }}</h4>
</article>
</div>
</div> <script src="http://cdn.jsdelivr.net/algoliasearch/3/algoliasearch.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.17/vue.js"></script>
<script>
new Vue ({
el: 'body',
data: { query: '' , movies: [] }, ready: function (){
this.client = algoliasearch('AH9XU5726U', '58fd00912ce725b3f627cfa6cb8292ee');
this.index = this.client.initIndex('getstarted_actors');
},
methods: {
search: function () {
this.index.search(this.query, function(error, results){
this.movies = results.hits;
}.bind(this));
}
} });
</script>

Am I missing something? or is the tutorial outdated?

asked Mar 7 '16 at 2:23
Mike

242215
1
 
v-on="keyup: search | key 'enter'"

is a old version declaration, change to this:

v-on:keyup.enter="search"

http://vuejs.org/guide/events.html#Key_Modifiers

最新文章

  1. [LeetCode] Path Sum II 二叉树路径之和之二
  2. POJ2195 最小费用流
  3. Swift 对比学习 (二)
  4. Microsoft.Bcl.Build 1.0.10 稳定版发布
  5. Mac下安装MySQL
  6. chrome升级54以后,显示Adobe Flash Player 因过期而遭到阻止
  7. java.util.concurrent
  8. CSS中常用的字体单位:px、em、rem和%的区别
  9. Weblogic 集群部署说明 --转
  10. 更改mysql数据库latin1_swedish_ci为utf8
  11. php 之 post json 数据
  12. C++函数后面加const修饰
  13. PHP 魔术方法之__set__get__unset,__isset,__call
  14. (Problem 5)Smallest multiple
  15. linux 系统状态分析
  16. asp.net后台发送HTTP请求
  17. 什么是Docker,它可干什么?
  18. nginx配置tp5的pathinfo模式并隐藏后台入口文件
  19. F#周报2019年第5期
  20. (原)tensorflow中提示CUDA_ERROR_LAUNCH_FAILED

热门文章

  1. C++进阶--编译器自动生成的类函数
  2. C#DateTime好用但不常用的用法
  3. Jmeter(二十七)Jmeter Question 之“集成Ant+Jenkins自动化”
  4. [UE4]UI动画
  5. win7运行bat文件 一闪而过 解决 必须要将生成器放在C盘等没有中文的目录里
  6. UI 性能因素考虑
  7. C/C++ 与 Python 的通信
  8. adb显示 部分乱码修改方法
  9. Java - 23 Java 抽象类
  10. 小朋友学C语言(6)