Laravel紧密配合

时间:2018-09-10 01:00:29

标签: laravel vue.js vue-component

我想知道如何将变量传递给laravel中的vue组件?

使用刀片时,我们可以传递如下变量:

$now = Carbon::now();
return view('xxxxxxxx', compact('now');

这样,我可以在$now刀片文件中使用xxxxxxxx。但是vue组件呢?我们通常通过json返回组件的数据,而使用axios路由则无法获得该信息来为我们的确切组件指定此类数据?

如果我想在$now = Carbon::now();组件中使用single.vue怎么办?

我该如何实现?

更新

这是我想进行计时的原因,因为无法使用碳(基于注释),我想使用moment.js

逻辑

  1. 如果项目截止日期尚未到来,让用户出价
  2. 如果项目截止日期到了,请勿让用户出价

template

<template v-if="`${project.deadline | timeAgo}`">
  pssed (will be replaced by button is just for test)
</template>
<template v-else>
  still have time (will be replaced by button is just for test)
</template>

script

var moment = require('moment');
export default {
        data(){
            return {
                project : '',
            }
        },
        mounted: function() {
            // I found this code by google not sure if is currect!
            Vue.filter('timeAgo', function(value){
                return moment(value) >= fromNow()
            });
        },
}

根据我上面的代码,结果是

one

1 个答案:

答案 0 :(得分:0)

尝试一下:

这是我的路线,只是我只渲染了带有一些预定义变量的视图

Route::get('/', function () {
    return view('welcome', [
        'now' => Carbon::now(),
        'deadline' => Carbon::now()->addHours(2)
    ]);
});

这是我的视图文件。在这里,我有一个名为example-component的自定义元素。这就是我使用props将PHP变量传递给Vue组件的方式。

然后将您的数据传递到窗口,如下所示:

<script>window.data = @json(compact('now', 'deadline'))</script>

这是我的Vue组件文件:

<template>
    <h1>
        <span v-if="isPassed">This job is passed</span>
        <span v-else>You have to finish this job</span>
        {{ parsedDeadline | timeFromX(parsedNow) }}
    </h1>
</template>

<script>
const moment = require('moment');

export default {
    props: {
        now: {
            type: String,
            default: () => window.data.now.date // since `now` is an object, you need to access the `date` property to get plain string date that moment can parse
        },
        deadline: {
            type: String,
            default: () => window.data.deadline.date // same as above
        }
    },
    computed: {
        parsedNow () {
            return moment(this.now)
        },
        parsedDeadline () {
            return moment(this.deadline)
        },
        isPassed () {
            return this.parsedNow.isAfter(this.parsedDeadline)
        }
    }
}
</script>

这是有关computedfilters的文档。您可能从不mounted函数中添加过滤器,因为它可能会导致内存泄漏。这是我添加过滤器的方法。在您的app.js中(假设您使用的是默认的Laravel Vue预设)

/**
 * First we will load all of this project's JavaScript dependencies which
 * includes Vue and other libraries. It is a great starting point when
 * building robust, powerful web applications using Vue and Laravel.
 */

require('./bootstrap');

window.Vue = require('vue');

/**
 * Next, we will create a fresh Vue application instance and attach it to
 * the page. Then, you may begin adding components to this application
 * or customize the JavaScript scaffolding to fit your unique needs.
 */

Vue.component('example-component', require('./components/ExampleComponent.vue'));

Vue.filter('timeFromX', (a, b) => a.from(b)); // TADAAA...!!!

const app = new Vue({
    el: '#app'
});

更新

如果要尝试此操作,可以编辑routes/web.php并更改deadline值:

Route::get('/', function () {
    return view('welcome', [
        'now' => Carbon::now(),
        'deadline' => Carbon::now()->subHours(2), // Passed 2 hours ago
        // 'deadline' => Carbon::now()->addHours(2), // In 2 hours
    ]);
});

查看有关加法和减法的Carbon文档here

UPDATE II

如果您在上述代码中app.js中遇到错误,则可能是您的编译器不知道箭头键。

// Looks like arrow-parens not working, see code below
// Vue.filter('timeFromX', (a, b) => a.from(b)); // TADAAA...!!!

// Change it to this ???
Vue.filter('timeFromX', function (a, b) {
    return a.from(b);
});