vue如何通過變數動態拼接url

做一隻會飛的象發表於2018-09-27

如何通過變數動態拼接url?
格式:<a :href="'index.shtml?other='+object.name">這是一個動態連結</a>
需要注意的是href前要加上冒號,href最外層是雙引號,中間是單引號。

<div class="tab-content" id="datatable">
	<div v-for="(object,index) in items">
		<!-格式如下,href前要加上冒號--->  
	   <a :href="'index.shtml?other='+object.name">這是一個動態連結</a>
	</div>
</div>
<script>
    $(document).ready(function() {
        App.init();
        //資料列表
        var datatable = new Vue({
            el: '#datatable',
            data: {
                items: [],
            },
        });
        //從服務端獲取資料
        getList();
        function getList() {
            $.ajax({
                url : "/sapi/getcluster",
                type : "post",
                dataType : "json",
                success : function(result){
                    if(result.status == -1){
                        window.location.href = result.data;
                        return false;
                    }
                    datatable.items = result.data["XXX"];
                }
            });
        }
    });
</script>

動態拼接結果為: href=“index.shtml?other=yyy”

相關文章