import share from '@system.share' 或 const share = require('@system.share')
接口定義
share.share(OBJECT)
分享數(shù)據(jù)到其他app
參數(shù):
參數(shù)名
類型
必填
說明
type
String
是
數(shù)據(jù)的MIME TYPE,要求字母全小寫
data
String
是
分享的數(shù)據(jù):1. 如果 type 是 text/ 開頭的mimetype(如 text/plain ),則 data 是要分享的文本內(nèi)容;2. 如果 type 是其他值,則 data 是要分享的文件路徑。支持三種文件路徑:1. 通過fetch.fetch 下載的文件路徑;2. 通過file.save或list獲得的文件路徑;3. 以/開頭的應(yīng)用內(nèi)部的資源文件。
更多建議: