家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. const WxParse = require('../../wxParse/wxParse.js')
  2. const $ = global
  3. new $.Page({
  4. onLoad(options) {
  5. const id = options.id;
  6. const meta = $.router.getMeta();
  7. const content = meta && meta.params && meta.params.content;
  8. if (content) {
  9. WxParse.wxParse('article', 'html', content, this, 5);
  10. }else if (id) {
  11. $.request(`server_info/${id}`, 'GET', {}).then((res) => {
  12. var article = res.data.content || '';
  13. WxParse.wxParse('article', 'html', article, this, 5);
  14. });
  15. }
  16. }
  17. })