百度智能小程序 設置web小程序description meta

2020-09-05 14:44 更新

swan.setMetaDescription

不推薦使用。

解釋: 設置 web 版小程序 description meta 信息。此方法為 web 版小程序專用方法,使用前需判斷方法是否存在。

方法參數(shù)

Object object

object參數(shù)說明

屬性名類型必填默認值說明
contentString需要設置的 description 內容
successFunction接口調用成功的回調函數(shù)
failFunction接口調用失敗的回調函數(shù)
completeFunction接口調用結束的回調函數(shù)(調用成功、失敗都會執(zhí)行)

示例 

在開發(fā)者工具中打開

圖片示例

代碼示例

<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);
            }
        });
    }
});


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號