Vue調用WebService和API


<script src="~/Scripts/vue.js" ></script >
<table>
    <tr v-for="log in log">
        <td>
            
        </td>
    </tr>
</table>

<script type="text/javascript">
    new Vue({
        el: 'table',        
        data: {
            log:[]
        },
        created :function() {
            //fetch("http://localhost:58513/api/decheng/")
            //fetch("http://api.myjson.com/bins/74l63")
            fetch("http://localhost:55289/RoleWebService.asmx/GetRolesAll", {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json',
                }
            })
            //fetch("http://localhost:55289/RoleWebService.asmx/GetRole", {
            //    method: 'POST',
            //    headers: {
            //        'Content-Type': 'application/json',
            //    },
            //    body: '{Id:1}'
            //})
            .then(m=> m.json())
            .then(json=> { this.log = json.d; });
        }
    });
</script>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM