作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 Ionic 中制作一个项目。
当我尝试 ionic cordova build ios -- --buildFlag="-UseModernBuildSystem=0"
时发生错误
TypeError: Cannot read property 'name' of undefined
了解更深层次的原因:--verbose
<使用时
at /Users/myname/ionic/platforms/ios/cordova/lib/build.js:130:60
我能够识别出这是错误的根源,但我不知道这个错误的解决方案。
var promise = require('./list-emulator-build-targets').targetForSimIdentifier(newTarget);
return promise.then(function (theTarget) {
if (!theTarget) {
return getDefaultSimulatorTarget().then(function (defaultTarget) {
emulatorTarget = defaultTarget.name;
events.emit('log', 'Building for ' + emulatorTarget + ' Simulator');
return emulatorTarget;
});
} else {
emulatorTarget = theTarget.name;
events.emit('log', 'Building for ' + emulatorTarget + ' Simulator');
return emulatorTarget;
}
});
最佳答案
这个错误当然是MacOS Catalina
https://github.com/apache/cordova-ios/issues/427#issuecomment-503522317
修复代码platform/ios/cordova/liblist-emulator-build-targets
var availableDevices = Object.keys(devices).reduce(function (availAcc, deviceCategory) {
var availableDevicesInCategory = devices[deviceCategory];
availableDevicesInCategory.forEach(function (device) {
if (device && device.name === deviceType.name.replace(/\-inch/g, ' inch') && device.isAvailable == true) {
availAcc.push(device);
}
});
return availAcc;
}, []);
关于ios - 类型错误 : Cannot read property 'name' of undefined ionic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58638785/
我是一名优秀的程序员,十分优秀!