template標籤與小程式資料載入報錯問題
阿新 • • 發佈:2021-01-25
- name:給當前模板新增標記 *
<template name="a">
<view>我的模板</view>
</template>
<view>
<text>我是模板之外的內容</text>
</view>
我的模板
-
這個是獲取路徑的方法*
<import src="/pages/templates/a.wxml"></import>
-
is: 根據模板的name的值,來顯示 *
<template is="a"></template>
-
獲取模板之外的內容*
<include src="/pages/templates/a.wxml"/>
跨域的問題
小程式沒有跨域的問題
跨域起源事瀏覽器同源策略- 下面這個程式碼看似都沒錯 ,但是在小程式會報錯*
-
getData(){ wx.request({ url: 'http://jsonplaceholder.typicode.com/todos', //僅為示例,並非真實的介面地址 // methods:"post" success (res) { //請求成功後 console.log(res.data) } }) },