欢迎光临
我们一直在努力

九八云百度小程序教程:swan.setMetaKeywords

  • swan.setMetaKeywords
    • 方法参数
      • object 参数说明
    • 示例
      • 图片示例
      • 代码示例

    swan.setMetaKeywords

    不推荐使用。

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

    方法参数

    Object object

    object 参数说明

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

    示例

    在开发者工具中打开

    在开发者工具中打开

    在 WEB IDE 中打开

    请在开发者工具中,单击“预览”,输入您的 AppID,单击“ WEB 预览”,百度 App 中扫码体验。

    图片示例

    代码示例

    • SWAN
    • JS
    
     
    1. <view class="wrap">
    2. <button type="primary" bindtap="setMetaKeywords">setMetaKeywords</button>
    3. </view>
    
     
    1. Page({
    2. setMetaKeywords() {
    3. swan.setMetaKeywords({
    4. content: '小程序 keywords meta 信息',
    5. success: res => {
    6. console.log('setMetaKeywords success', res);
    7. },
    8. fail: err => {
    9. console.log('setMetaKeywords fail', err);
    10. }
    11. });
    12. }
    13. });

    赞(0) 打赏
    未经允许不得转载:九八云安全 » 九八云百度小程序教程:swan.setMetaKeywords

    评论 抢沙发