您好,登錄后才能下訂單哦!
這篇文章主要講解了如何使用vue實現通過變量動態拼接url,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
如何通過變量動態拼接url?
格式:<a :href="'index.shtml other='+object.name" rel="external nofollow" rel="external nofollow" >這是一個動態鏈接</a>
需要注意的是href前要加上冒號,href最外層是雙引號,中間是單引號。
<div class="tab-content" id="datatable"> <div v-for="(object,index) in items"> <!-格式如下,href前要加上冒號---> <a :href="'index.shtml?other='+object.name" rel="external nofollow" rel="external nofollow" >這是一個動態鏈接</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”
補充知識:vue全局變量apiurl
1、定義
在main.js里面定義
Vue.prototype.$apiUrl = " http://xxxxxxxxxx";
2、使用
在聯調的時候
url: this.$apiUrl + "/xxxx(端口)"
看完上述內容,是不是對如何使用vue實現通過變量動態拼接url有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。