我正在尝试启动一个使用以下语言创建的有角度的Web应用程序:> ng serve "--port" "53268"
** Angular Live Development Server is listening on localhost:53268, open your browser on http://localhost:53268/ **
'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\2.2.3\Microsoft.Win32.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
The thread 0x1c78 has exited with code 0 (0x0).
Microsoft.AspNetCore.SpaServices:Information: Date: 2019-03-29T04:16:23.577Z
Hash: 199c133192f6cc63c0b1
Time: 14577ms
chunk {main} main.js, main.js.map (main) 26.4 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 227 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 5.22 kB [entry] [rendered]
chunk {styles} styles.css, styles.css.map (styles) 130 kB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 3.86 MB [initial] [rendered]
i 「wdm」: Compiled successfully.
The thread 0x3238 has exited with code 0 (0x0).
(exit is repeated multiple times)
,该应用程序可以无问题地创建一个有角度的6.1.10应用程序,但是当我按debug启动项目时,locahhost页面将加载,直到超时为止( Chrome控制台中没有错误)。 This Github question似乎相关,但是该项目在另一台计算机上正确构建并启动。我不知道如何解决此问题。有什么建议吗?
“ VS调试输出”窗口:
// Init
Activity activity = (Activity) othersMap.get("activity");
modelFile = loadModelFile(activity);
tfLite = new Interpreter(modelFile, tfliteOptions);
useCPU();
imgData = ByteBuffer.allocateDirect(
DIM_BATCH_SIZE * DIM_IMG_SIZE_X * DIM_IMG_SIZE_Y * DIM_PIXEL_SIZE * 4);
imgData.order(ByteOrder.nativeOrder());
embeddingArray = new float[1][128];