引用线上资源

小程序原生支持在wxsswxml中使用线上资源,这点和开发web应用没有太多区别。

无需任何配置,就可以直接在.mpx中引用线上资源。

webpack.config.js

  1. webpackconfig = {
  2. // 不需要配置
  3. }

index.mpx

  1. <template>
  2. <view>
  3. <image src='http://my.cdn.com/bg2.png'/>
  4. <view class="container"></view>
  5. <view>
  6. </template>
  7. <style lang="css">
  8. .container: {
  9. background-image: url('http://my.cdn.com/bg1.png');
  10. }
  11. </style>