Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のES6インポートに相当するNode.jsの「require」は何ですか?
import RNFetchBlob from 'react-native-fetch-blob'
ありがとうございました
require にはデフォルトのエクスポートがないため、正確に同等のものはありません。
エクスポートする値が 1 つしかない場合のノード モジュールのプラクティスは、それをモジュール エクスポートにすることです。
module.exports = ...
そのような場合、次を使用してインポートできます
var RNFetchBlob = require('react-native-fetch-blob');
解決
私はそれを動作させました:
var RNFetchBlob = require('react-native-fetch-blob').default;
詳細については、こちらをご覧ください。