我刚接触Angular并遇到此错误消息:
未捕获的ReferenceError:模块未定义 在scripts.js:4
当我检查scripts.js时,它引用以下行:
;module.exports = prop;
它属于的文件是node_modules中propper的index.js文件。
module.exports = prop;
function prop(obj, path, value) {
if (!obj) return undefined;
....
}