Site Notice

hello, world

QuickGetWikiCode

From Project-EPB Commons
Revision as of 11:14, 23 November 2019 by 机智的小鱼君 (talk | contribs) ([InPageEdit] 没有编辑摘要)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
function getWikiCode() {
  var preUrl = location.href.split('/');
  preUrl = preUrl[0]+'/'+preUrl[1]+'/'+preUrl[2]+'/api.php';
  var url = prompt('Wiki url?',preUrl);
  if (url == null) return;
  var title = prompt('Pagename?',wgPageName);
  if (title == null) return;
  
  $.ajax({
    url: url,
    dataType: 'jsonp',
    type: 'get',
    data: {
      page: title,
      action: 'parse',
      prop: 'wikitext',
      format: 'json'
    },
    success: function(result) {
      var wikitext;
      if (result.parse !== undefined) {
        wikitext = result.parse.wikitext['*'];
      } else {
        wikitext = '错误:无法读取页面。'
      }
      alert(wikitext);
      console.info(wikitext);
    }
  });
}
getWikiCode()