Vue从GET php获取价值

时间:2017-11-05 06:48:46

标签: php vue.js

我有这个用于获取userType

<?php echo $userType = $_GET['user_type']?>;

我想将$ userType初始化为Vue varibale,如下所示或任何简单方法

var ArtificialInsemination = new Vue({

    el:'#ArtificialInsemination',
    data: {
        url:'http://localhost/dairyweb/dairyfarm/index.php',
        artificialInseminationRecords: [],
        cowId: '',
        aiNo: '',
        sessession:'',
        user:$userType

    },

1 个答案:

答案 0 :(得分:0)

在Vue中你可以抓住这样的url参数:

this.$route.query.user_type

假设您的网址是这样的:

http:://example.com?user_type=exampletype

我还假设您需要导入vuerouter,但我不是百分之百确定。