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