react-native 操作html,访问网络 · React Native 中文网

很多移动应用都需要从远程地址中获取数据或资源。你可能需要给某个 REST API 发起 POST 请求以提交用户数据,又或者可能仅仅需要从某个服务器上获取一些静态内容——以下就是你会用到的东西。新手可以对照这个简短的视频教程加深理解。

使用 Fetch#

React Native 提供了和 web 标准一致的Fetch API,用于满足开发者访问网络的需求。如果你之前使用过XMLHttpRequest(即俗称的 ajax)或是其他的网络 API,那么 Fetch 用起来将会相当容易上手。这篇文档只会列出 Fetch 的基本用法,并不会讲述太多细节,你可以使用你喜欢的搜索引擎去搜索fetch api关键字以了解更多信息。

发起请求#

要从任意地址获取内容的话,只需简单地将网址作为参数传递给 fetch 方法即可(fetch 这个词本身也就是获取的意思):

fetch('https://mywebsite.com/mydata.json');Copy

Fetch 还有可选的第二个参数,可以用来定制 HTTP 请求一些参数。你可以指定 header 参数,或是指定使用 POST 方法,又或是提交数据等等:

fetch('https://mywebsite.com/endpoint/',{

method:'POST',

headers:{

Accept:'application/json',

'Content-Type':'application/json'

},

body:JSON.stringify({

firstParam:'yourValue',

secondParam:'yourOtherValue'

})

});Copy

提交数据的格式关键取决于 headers 中的Content-Type。Content-Type有很多种,对应 body 的格式也有区别。到底应该采用什么样的Content-Type取决于服务器端,所以请和服务器端的开发人员沟通确定清楚。常用的'Content-Type'除了上面的'application/json',还有传统的网页表单形式,示例如下:

fetch('https://mywebsite.com/endpoint/',{

method:'POST',

headers:{

'Content-Type':'application/x-www-form-urlencoded'

},

body:'key1=value1&key2=value2'

});Copy

可以参考Fetch 请求文档来查看所有可用的参数。注意:使用 Chrome 调试目前无法观测到 React Native 中的网络请求,你可以使用第三方的react-native-debugger来进行观测。

处理服务器的响应数据#

上面的例子演示了如何发起请求。很多情况下,你还需要处理服务器回复的数据。

网络请求天然是一种异步操作(译注:同样的还有asyncstorage,请不要再问怎样把异步变成同步!无论在语法层面怎么折腾,它们的异步本质是无法变更的。异步的意思是你应该趁这个时间去做点别的事情,比如显示 loading,而不是让界面卡住傻等)。Fetch 方法会返回一个Promise,这种模式可以简化异步风格的代码(译注:同样的,如果你不了解 promise,建议使用搜索引擎补课):

functiongetMoviesFromApiAsync(){

returnfetch(

'https://facebook.github.io/react-native/movies.json'

)

.then((response)=>response.json())

.then((responseJson)=>{

returnresponseJson.movies;

})

.catch((error)=>{

console.error(error);

});

}Copy

你也可以在 React Native 应用中使用 ES2017 标准中的async/await 语法:

// 注意这个方法前面有async关键字

asyncfunctiongetMoviesFromApi(){

try{

// 注意这里的await语句,其所在的函数必须有async关键字声明

letresponse=awaitfetch(

'https://facebook.github.io/react-native/movies.json'

);

letresponseJson=awaitresponse.json();

returnresponseJson.movies;

}catch(error){

console.error(error);

}

}Copy

别忘了 catch 住fetch可能抛出的异常,否则出错时你可能看不到任何提示。

函数式组件

Class 组件默认情况下,iOS 会阻止所有 http 的请求,以督促开发者使用 https。如果你仍然需要使用 http 协议,那么首先需要添加一个 App Transport Security 的例外,详细可参考这篇帖子。从 Android9 开始,也会默认阻止 http 请求,请参考相关配置

使用其他的网络库#

React Native 中已经内置了XMLHttpRequest API(也就是俗称的 ajax)。一些基于 XMLHttpRequest 封装的第三方库也可以使用,例如frisbee或是axios等。但注意不能使用 jQuery,因为 jQuery 中还使用了很多浏览器中才有而 RN 中没有的东西(所以也不是所有 web 中的 ajax 库都可以直接使用)。

constrequest=newXMLHttpRequest();

request.onreadystatechange=(e)=>{

if(request.readyState!==4){

return;

}

if(request.status===200){

console.log('success',request.responseText);

}else{

console.warn('error');

}

};

request.open('GET','https://mywebsite.com/endpoint/');

request.send();Copy需要注意的是,安全机制与网页环境有所不同:在应用中你可以访问任何网站,没有跨域的限制。

WebSocket 支持#

React Native 还支持WebSocket,这种协议可以在单个 TCP 连接上提供全双工的通信信道。

constws=newWebSocket('ws://host.com/path');

ws.onopen=()=>{

// connection opened

ws.send('something');// send a message

};

ws.onmessage=(e)=>{

// a message was received

console.log(e.data);

};

ws.οnerrοr=(e)=>{

// an error occurred

console.log(e.message);

};

ws.onclose=(e)=>{

// connection closed

console.log(e.code,e.reason);

};Copy

High Five!#

现在你的应用已经可以从各种渠道获取数据了,那么接下来面临的问题多半就是如何在不同的页面间组织和串联内容了。要管理页面的跳转,你需要学习使用导航器跳转页面。

Known Issues with fetch and cookie based authentication#

The following options are currently not working with fetchredirect:manual

credentials:omitHaving same name headers on Android will result in only the latest one being present. A temporary solution can be found here: https://github.com/facebook/react-native/issues/18837#issuecomment-398779994.

Cookie based authentication is currently unstable. You can view some of the issues raised here: https://github.com/facebook/react-native/issues/23185

As a minimum on iOS, when redirected through a 302, if a Set-Cookie header is present, the cookie is not set properly. Since the redirect cannot be handled manually this might cause a scenario where infinite requests occur if the redirect is the result of an expired session.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值