Javascriptのexportとimport

Javascriptのexportとimport:


modelを作ってexportする

// exportする側 
// constを作成 
const exampleModel1 = { 
    object: { 
        prop1: 'prop1', 
        prop2: 'prop2', 
        prop3: 'prop3', 
    } 
}; 
const exampleModel2 = { 
    object: { 
        prop4: 'prop4', 
        prop5: 'prop5', 
        prop6: 'prop6', 
    } 
}; 
function example(x) { 
  return x * x * x; 
} 
// 色々export出来る 
export { exampleModel1, exampleModel2, example } 
 
 
 
// importする側※exampleModel1だけimportの場合 
import { exampleModel1 } from '/path/to/file'; 

コメント

このブログの人気の投稿

投稿時間:2021-06-17 22:08:45 RSSフィード2021-06-17 22:00 分まとめ(2089件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)