1. 程式人生 > 其它 >template標籤與小程式資料載入報錯問題

template標籤與小程式資料載入報錯問題

  • 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)
     }
   })
 },

在這裡插入圖片描述