swan.setMetaDescription
不推荐使用。
解释: 设置 web 版小程序 description meta 信息。此方法为 web 版小程序专用方法,使用前需判断方法是否存在。
方法参数
Object object
object 参数说明
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
content | String | 是 | 需要设置的 description 内容 | |
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例
请在开发者工具中,单击“预览”,输入您的 AppID,单击“ WEB 预览”,百度 App 中扫码体验。
图片示例
代码示例
- SWAN
- JS
<view class="wrap">
<button type="primary" bindtap="setMetaDescription">setMetaDescription</button>
</view>
Page({
setMetaDescription() {
swan.setMetaDescription({
content: '小程序 description meta 信息',
success: res => {
console.log('setMetaDescription success', res);
},
fail: err => {
console.log('setMetaDescription fail', err);
}
});
}
});