博客列表 >vue-resource ajax请求

vue-resource ajax请求

大瓶可乐
大瓶可乐原创
2022年02月08日 13:23:52686浏览

``

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>vue-resource ajax请求</title>
  6. <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
  7. <script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
  8. </head>
  9. <body>
  10. <div id="box">
  11. <ol>
  12. <li v-for="site in sites">
  13. {{ site.name }}
  14. </li>
  15. </ol>
  16. </div>
  17. <script type = "text/javascript">
  18. window.onload = function(){
  19. var vm = new Vue({
  20. el:'#box',
  21. data:{
  22. sites: []
  23. },
  24. created: function () {
  25. //发送get请求
  26. this.$http.jsonp('https://www.test.com/index.php/api/v1/category').then(function(res){
  27. this.sites = res.body.data.son;
  28. },function(){
  29. console.log('请求失败处理');
  30. });
  31. }
  32. });
  33. }
  34. </script>
  35. </body>
  36. </html>``
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议