gpt4 book ai didi

react-native - 为 clearCookies 导入网络模块

转载 作者:行者123 更新时间:2023-12-04 05:19:00 24 4
gpt4 key购买 nike

我需要 clearCookies并找到了一个隐藏/未记录的函数 - https://github.com/facebook/react-native/blob/26684cf3adf4094eb6c405d345a75bf8c7c0bf88/Libraries/Network/RCTNetworking.android.js

我可以像这样访问它:

import RCTNetworking from 'RCTNetworking'
console.log('RCTNetworking:', RCTNetworking.clearCookies);

它有效,但它正确吗?将 import RCTNetworking from 'RCTNetworking'保证工作?

我认为从 NativeModules 导入会更安全像这样:
import { NativeModules } from 'react-native'
console.log('Networking:', NativeModules.Networking.clearCookies);

但是这会导入整个 NativeModules其中有一堆其他的东西。这不是很糟糕吗?或者生产中的摇树是否会从 NativeModules 中删除所有我不使用的东西? ?

有没有其他方法可以访问 clearCookies ?这在任何地方都有记录吗?

最佳答案

我进口了RCTNetworking像这样:var RCTNetworking = require("RCTNetworking");保证此导入适用于所有平台。
我找不到 RCTNetworking 的任何文档也不为clearCookies()功能

关于react-native - 为 clearCookies 导入网络模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48857740/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com