百度智能小程序 设置web小程序keywords meta

2020-09-05 14:44 更新

swan.setMetaKeywords

不推荐使用。

解释: 设置 web 版小程序 keywords meta 信息。此方法为 web 版小程序专用方法,使用前需判断方法是否存在。

方法参数

Object object

object参数说明

属性名类型必填默认值说明
contentString需要设置的 keywords 内容
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例 

在开发者工具中打开

图片示例

代码示例

<view class="wrap">
    <button type="primary" bindtap="setMetaKeywords">setMetaKeywords</button>
</view>
Page({
    setMetaKeywords() {
        swan.setMetaKeywords({
            content: '小程序 keywords meta 信息',
            success: res => {
                console.log('setMetaKeywords success', res);
            },
            fail: err => {
                console.log('setMetaKeywords fail', err);
            }
        });
    }
});


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号