web-view 组件是一个可以用来承载网页的容器,会自动铺满整个小程序页面。个人类型与海外类型的小程序暂不支持使用。
开发环境:angular + 微信小程序
在Angular中调用微信小程序JSSDK
index.html
Wechath5
在Angular组件中调用小程序JSSDK提供方法接口
import { Component, OnInit } from '@angular/core';declare var wx: any;@Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css']})export class AppComponent implements OnInit { info = null; ngOnInit() { const that = this; // 微信接口 wx.miniProgram.getEnv(function (res) { that.info = res.miniprogram; }); }}
小程序向H5传递参数的方式 url?id=1
H5返回小程序并传递参数
wx.miniProgram.redirectTo({ url: '../index/index?name=word' });