引用线上资源
小程序原生支持在wxss
和wxml
中使用线上资源,这点和开发web应用没有太多区别。
无需任何配置,就可以直接在.mpx
中引用线上资源。
webpack.config.js
webpackconfig = {
// 不需要配置
}
index.mpx
<template>
<view>
<image src='http://my.cdn.com/bg2.png'/>
<view class="container"></view>
<view>
</template>
<style lang="css">
.container: {
background-image: url('http://my.cdn.com/bg1.png');
}
</style>