从js文件调用路由

时间:2015-12-26 17:56:43

标签: javascript ajax laravel-5.1

我是laravel的新手,所以我不知道如何从js文件调用路径。

$scope.sum = function(value) {
    return value && value.reduce(function(total, article) {
        return total + article.price;
    }, 0) || 0;
};

我正在尝试调用名为executeSearch的帖子路由,而我正在使用localhost。

1 个答案:

答案 0 :(得分:0)

试试这个:

$.post('/executeSearch',{keywords: keywords},function(markup){
   console.log('Test2 passed');
   $('#search-results').html(markup);
});

您是否在网址中看到了开头的斜线?你可以在这里阅读更多相关信息:What is the purpose of leading slash in HTML URLs?

另外,请务必发送csrf token