You are looking at the HTML representation of the XML format.
HTML is good for debugging, but is unsuitable for application use.
Specify the format parameter to change the output format.
To see the non HTML representation of the XML format, set format=xml.
See the complete documentation, or API help for more information.
<?xml version="1.0"?>
<api>
  <query-continue>
    <allpages gapcontinue="React初学者教程" />
  </query-continue>
  <query>
    <pages>
      <page pageid="785" ns="0" title="React Native">
        <revisions>
          <rev contentformat="text/x-wiki" contentmodel="wikitext" xml:space="preserve">==Apple开发者账号介绍及证书配置说明==

https://www.jianshu.com/p/8190cf4a8172

==iOS版友盟分享组件引入==

[https://segmentfault.com/a/1190000017408206 React Native 结合友盟实现分享]

[http://wiki.mob.com/ios9-对sharesdk的影响(适配ios-9必读)/ 在Info.plist中添加Scheme白名单]

[https://blog.csdn.net/dream9393/article/details/79570794 ios 友盟分享提示UrlSchema Fail Code=2007]

== dev menu button form dev menu==

Command + M in OSX.

Ctrl + M in Linux and Windows.

==什么是componentWillReceiveProps?==

componentWillReceiveProps在初始化render的时候不会执行,它会在Component接受到新的状态(Props)时被触发,一般用于父组件状态更新时子组件的重新渲染。</rev>
        </revisions>
      </page>
      <page pageid="761" ns="0" title="Reactjs">
        <revisions>
          <rev contentformat="text/x-wiki" contentmodel="wikitext" xml:space="preserve">=快速入门=

[[React初学者教程]]

==安装==

1. 升级nodejs(8.8.1)、npm(5.4.2)到最新版。

2. 在本地生成react项目。
&lt;source lang=&quot;bash&quot;&gt;
npx create-react-app my-app
&lt;/source&gt;
3. 启动项目。页面显示在3000端口,代码修改后会自动刷新页面。
&lt;source lang=&quot;bash&quot;&gt;
npm start
&lt;/source&gt;
4. 运行测试。
&lt;source lang=&quot;bash&quot;&gt;
npm test
&lt;/source&gt;
5. 打包生产代码。
&lt;source lang=&quot;bash&quot;&gt;
npm run build
&lt;/source&gt;
6. 安装web服务。
&lt;source lang=&quot;bash&quot;&gt;
npm install -g serve
&lt;/source&gt;
7. 运行web服务。页面显示在5000端口
&lt;source lang=&quot;bash&quot;&gt;
serve -s build
&lt;/source&gt;

==bind(): React component methods may only be bound to the component instance.==

If you get this error: bind(): React component methods may only be bound to the component instance. It’s probably because you are using ES5 bind on a component property in order to curry a property and you are passing in a scope as the first argument (such as this). A simple fix is to pass null in as the scope argument.

==fiber==

在 react16 之前的 reconciler 叫 stack reconciler,fiber 是 react 新的 reconciler,这次更新到 fiber 架构是一次重量级的核心架构的替换,react 为了完成这次替换已经准备了两三年的时间了。</rev>
        </revisions>
      </page>
    </pages>
  </query>
</api>