我想创建一个全局函数。 例如,使用
创建一个Javascript
文件
function increment (val) {
return val + 1;
}
我想在app.js
或其他组件中使用此功能。
如何在ReactJS
中设置此结构?
答案 0 :(得分:1)
仅export
个模块功能就在import
中app.js
export function increment (val) {
return val + 1;
}
然后在您的app.js
中:
import { increment } from 'your_module_path';
//...
let b = increment(1);