ReactNative自定義NetworkingModule網路模組
1). 思路
I. 在MainApplication中的getPackages方法中,重複新增NetworkingModule模組,後者覆蓋前者。但官方的NetworkingModule中canOverrideExistingModule方法始終返回false, 故無法替換。
@Override
public boolean canOverrideExistingModule() {
// TODO(t11394819): Make this final and use annotation
return false;
}
II. 替換原有的OkHttpClient,此方法經試驗過後依舊無效。。
OkHttpClient okHttpClient = OkHttpClientProvider.getOkHttpClient().newBuilder().addNetworkInterceptor(getHttpLoggingInterceptor()).build();
OkHttpClientProvider.replaceOkHttpClient(okHttpClient);
III. 建立MainReactPackage,並繼承MainReactPackage類,實現getNativeModules方法,在getNativeModules方法中修改列表。
-
修改方法一:遍歷模組列表,並判斷哪一個下標的type(型別)是
NetworkingModule.class
, 並在重新設定當前下標的數值。出現的問題,使用自增變數遍歷,效率不如迭代。 -
修改方法二:建立一個模組列表,迭代原有的模組列表,並判斷type是否為
NetworkingModule.class
,如果是則新增自定義的,反之直接新增即可。 出現的問題:每次都有遍歷所有的模組影響效率。 - **修改方法三:****將原有的模組列表拷貝為新的模組列表,迭代原有的模組列表,並判斷type是否為
NetworkingModule.class
,如果是則先在拷貝的模組列表中移除當前項,再新增自定義的模組,完成後break跳出。
2). 程式碼
/**
* 自定義的MainReactPackage工具包
* 1. 移除了官方新增的NetworkingModule模組
* 2. 新增了帶有攔截器的自定義的NetworkingModule模組
* 3. 新增`com.squareup.okhttp3:logging-interceptor:3.10.0`
* 4. 實現了網路訪問時的日誌列印
* Created by mazaiting on 2018/6/13.
*/
public class CustomMainReactPackage extends MainReactPackage {
/**
* 獲取日誌攔截器
*
* @return Http日誌攔截器
*/
private static HttpLoggingInterceptor getHttpLoggingInterceptor() {
// 日誌顯示級別
HttpLoggingInterceptor.Level level = HttpLoggingInterceptor.Level.BODY;
// 新建攔截器
HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(new HttpLoggingInterceptor.Logger() {
@Override
public void log(@NonNull String message) {
// 判斷是否有內容
if (!TextUtils.isEmpty(message)) {
// 列印日誌
Log.e("Okhttp3 =====>", message);
}
}
});
// 設定顯示級別
loggingInterceptor.setLevel(level);
return loggingInterceptor;
}
/**
* 重寫NativeModules模組
*
* @param context 上下文
*/
@Override
public List<ModuleSpec> getNativeModules(ReactApplicationContext context) {
List<ModuleSpec> nativeModules = super.getNativeModules(context);
// 返回整改後的Modules列表
return adjustModules(context, nativeModules);
}
/**
* 修改系統的Modules
*
* @param context 上下文
* @param nativeModules 本地模組
* @return 模組列表
*/
private List<ModuleSpec> adjustModules(final ReactApplicationContext context, List<ModuleSpec> nativeModules) {
// 建立攔截器列表,NetworkInterceptorCreator在com.facebook.react.modules.network包下
final List<NetworkInterceptorCreator> list = new ArrayList<>();
// 新增攔截器
list.add(new NetworkInterceptorCreator() {
@Override
public Interceptor create() {
// 返回自定義的攔截器
return getHttpLoggingInterceptor();
}
});
// 建立模組列表
List<ModuleSpec> modules = new ArrayList<>(nativeModules);
// 遍歷模組
for (ModuleSpec moduleSpec : nativeModules) {
// 判斷是否為NetworkingModule網路模組
if (NetworkingModule.class.equals(moduleSpec.getType())) {
modules.remove(moduleSpec);
// 新增自定義的網路模組
modules.add(ModuleSpec.nativeModuleSpec(
NetworkingModule.class,
new Provider<NativeModule>() {
@Override
public NativeModule get() {
// 返回帶有攔截器的NetworkingModule網路模組
return new NetworkingModule(context, list);
}
}));
break;
}
}
return modules;
}
}
3). kotlin版本
/**
* 自定義的MainReactPackage工具包
* 1. 移除了官方新增的NetworkingModule模組
* 2. 新增了帶有攔截器的自定義的NetworkingModule模組
* 3. 新增`com.squareup.okhttp3:logging-interceptor:3.10.0`
* 4. 實現了網路訪問時的日誌列印
* Created by mazaiting on 2018/6/13.
*/
class CustomMainReactPackage : MainReactPackage() {
/**
* 獲取日誌攔截器
* @return Http日誌攔截器
*/
private fun getHttpLoggingInterceptor(): HttpLoggingInterceptor {
// 新建
val loggingInterceptor = HttpLoggingInterceptor(
HttpLoggingInterceptor.Logger { message: String? ->
if (!TextUtils.isEmpty(message)) {
Log.d("OkHttp=====>", message)
}
}
)
loggingInterceptor.level = HttpLoggingInterceptor.Level.BODY;
return loggingInterceptor
}
override fun getNativeModules(context: ReactApplicationContext?): MutableList<ModuleSpec> {
// 獲取父類的模組
val nativeModules = super.getNativeModules(context)
return adjustModules(context, nativeModules)
}
/**
* 矯正模組列表
* @param context 上下文
* @param nativeModules 模組列表
*/
private fun adjustModules(context: ReactApplicationContext?, nativeModules: List<ModuleSpec>): MutableList<ModuleSpec> {
// 建立攔截器,並新增Http攔截器
val list = Arrays.asList(NetworkInterceptorCreator { getHttpLoggingInterceptor() })
// 拷貝模組
val modules = ArrayList(nativeModules)
// 遍歷
nativeModules.forEach { moduleSpec: ModuleSpec ->
// 判斷型別
if (NetworkingModule::class.java == moduleSpec.type) {
// 移除當前項
modules.remove(moduleSpec)
// 新增新項
modules.add(ModuleSpec.nativeModuleSpec(
NetworkingModule::class.java,
{ NetworkingModule(context, list) }
))
return@forEach
}
}
return modules
}
}
相關文章
- keras自定義網路層Keras
- ansible自定義模組
- Zepto自定義模組打包構建
- ReactNative呼叫原生模組React
- js模組化之自定義模組(頁面模組化載入)JS
- python - 建立一個自定義模組Python
- python如何匯入自定義模組Python
- 在Python中新增自定義模組Python
- freeswitch自定義模組的wiki地址
- 第十章 自定義模組
- Docker-Bridge Network 03 自定義網路Docker
- ReactNative呼叫Android原生模組ReactAndroid
- 從Android到ReactNative開發(三、自定義原生控制元件支援)AndroidReact控制元件
- WebView自定義快取路徑WebView快取
- RNN 迴圈神經網路系列 5: 自定義單元RNN神經網路
- 18-神經網路-自定義帶引數的層神經網路
- ReactNative自定義元件及屬性React元件
- ??Java開發者的Python快速進修指南:自定義模組及常用模組JavaPython
- python基礎--自定義模組、import、from......import......PythonImport
- tensorflow2.0 自定義類模組列印問題
- Pytorch中自定義神經網路卷積核權重PyTorch神經網路卷積
- Python學習之如何引用Python自定義模組?Python
- HTMLTestRunnerNew模組原始碼及呼叫自定義報告封裝HTML原始碼封裝
- java 自定義表單 掛靠流程 模組設計方案Java
- 自定義npm模組包——打包後適用多場景NPM
- 自定義View:自定義屬性(自定義按鈕實現)View
- log-bin自定義路徑報錯
- freeswitch修改mod_sofia模組並上報自定義頭域
- js利用閉包封裝自定義模組的幾種方法JS封裝
- 20. 企業級開發基礎1:自定義模組
- BSN-DDC基礎網路詳解(八):部署自定義智慧合約
- Volley實現自定義的網路請求Implementing a Custom Request
- Caffe學習記錄:Cifar-10 自定義網路訓練記錄
- python怎麼自定義安裝路徑?Python
- Android自定義曲線路徑動畫框架Android動畫框架
- 08.Django自定義模板,自定義標籤和自定義過濾器Django過濾器
- Python3中如何做的自定義模組的引用?Python
- 工作流 自定義表單 掛靠流程 模組設計方案