gpt4 book ai didi

android - 现在,Arc Welder 未在 Windows 上启动测试应用程序

转载 作者:太空宇宙 更新时间:2023-11-03 13:52:41 24 4
gpt4 key购买 nike

昨天 (10/19/2015 06:00 PM),ARC Welder 应用程序开始无法启动应用程序。

出于某种原因,现在,当我单击“测试”时,Windows 10 上没有任何反应,我也在 MAC/Windows 7 上进行了测试,并且工作正常。

Chrome 版本 46.0.2490.71(64 位)

电弧焊机46.5021.478.14

更新这是控制台上显示的错误。

Uncaught (in promise) TypeError: Cannot read property 'angle' of undefined at $jscomp.scope.Plugin.computeLayout_ (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:125:302) at $jscomp.scope.Plugin.doLayout_ (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:122:383) at $jscomp.scope.Plugin.initializeWindow_ (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:98:175) at null. (chrome-extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:95:238)

最佳答案

解决方法在底部。

好吧,到目前为止我所拥有的不仅仅是信息的解决方案

问题似乎出在 Arc Extension 的运行时部分:

查看-> https://chrome.google.com/webstore/detail/app-runtime-for-chrome-be/mfaihdlpglflfgpfjcifdjdjcckigekc

问题出在文件 plugin.js

// Let the CameraManager in Android know what the current orientation is
var message = {
namespace: 'pluginCameraManager',
command: 'screenRotation',
data: {
'angle': screen.orientation.angle
}
};
this.postMessage(message);

Cannot read property 'angle' of undefined at...

'角度': screen.orientation.angle

//for context
var a=Promise.all([this.createAppPlugin_(),window.arcparams.systemDirectoriesReady]);
//problem is initializeWindow_() fails
a.then(function(){this.initializeWindow_();

** 变通解决方案**

这可能会导致更多错误,我不知道,风险自负。

打开文件:

%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\mfaihdlpgllflfgpfjcifdjdjcckigekc\46.5021.478.18_0\gen_index.min.js

extension://joabdphlghkbahegchlcmhbaaijcgghj/_modules/mfaihdlpglflfgpfjcifdjdjcckigekc/gen_index.min.js:125:302)

所以在第 125 行的第 302 个字符处,您应该找到单词“angle”,如下所示:

数据:{angle:screen.orientation.angle}

将其更改为:

数据:{angle:0}

0 被使用,你可以阅读为什么 -> Find screen angle when orientation is fixed in android

关于android - 现在,Arc Welder 未在 Windows 上启动测试应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33240532/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com