0.1.4 • Published 3 years ago

mi-bbeditor v0.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

一个 基于wysiwygbb 拓展过的编辑器

props类型介绍默认值
contentHtmlString默认值""
fetchGameInfoFunction拉取游戏信息,见fetchGameInfo代码片段示例
<BBEditor ref="bbeditor" :fetchGameInfo="fetchGameInfo"></BBEditor>
// 通过一下方式获取编辑器内容
this.refs.bbeditor.getContentHtml()
this.refs.bbeditor.getContentBBcode()
// queryStr: 检索关键词
// count: 返回的数据条目数量,默认为5
async fetchGameInfo(queryStr,count){
      // 加载游戏信息
      // 此接口的返回格式和要求不符合,会自动转换,其他接口请严格按照返回格式要求来响应数据
      let url = 'http://game.xiaomi.com/api/searchGame?keyWords='+queryStr+'&offset=0&count='+count
      return window.fetch(url)
      // 返回格式要求为
      // {
      //   code:1, //表示请求成功
      //   searchGameInfos:[
      //     {
      //       gameIcon:'https://t1.g.mi.com/thumbnail/webp/w750/Wali/1024355a1e96f6a877e570768b4848565e94201bd',
      //       gameName:'卡酷夜生活',
      //       developerCompanyName:'卡酷工作室',
      //       socre: '5.0',
      //       gameId:1
      //     }
      //     ...
      //   ]
      // }
    },