2018年11月20日 星期二

【React】預設專案 react-app IE 空白 CHROME 正常

【React,ReactJS】預設專案  react-app IE 空白 CHROME 正常

npm init react-app my-app

在 Windows 7 IE11 上瀏覽 顯示空白,經過 F12 開發人員管理 去看 ,發現 瀏覽器版本跑到 IE7去

所以 會顯示有問題,
只要在 head 加上

就會正常




【IE11】F12 開發人員工作 DOM 總管 出現錯誤

【IE11】F12 開發人員工作  DOM 總管  出現錯誤

Diagnostic:
Exception in window.onload: Error: An error has ocurredJSPlugin.3005

下載更新套件

KB3008923:Internet Explorer 11 積存安全性更新 (適用於 x64 系統的 Windows 7)

https://www.microsoft.com/zh-TW/download/details.aspx?id=45154

2018年11月18日 星期日

【Xamarin.Forms】001 - emulator 新增 Google Play Store 跟 Google Apis

【Xamarin.Forms】001 - emulator 新增 Google Play Store 跟 Google Apis


處理器選 x86  才能點選「Google Play 跟 Google APIs」




【Xamarin】Windows 7 & Visual 2017 作業系統 Could not launch the emulator Android Device Manager

【Xamarin】
Windows 7 & Visual 2017 作業系統 
Xamarin  Android Device Manager

Could not launch the emulator

Could not start emulator
Could not launch the emulator請通過選擇 幫助 菜單中的 以告問題 提出問題,並附加你的日志。
Error message: 無法載入 DLL DismApi:找不到指定的模組。 (發生例外狀況於 HRESULT: 0x8007007E)

相關討論連結:
https://unlimit.tw/forum.php?mod=viewthread&tid=75981&extra=

https://developercommunity.visualstudio.com/content/problem/326886/could-not-start-emulator-unable-to-load-dismapidll.html

該錯誤訊息的 Log位置:
C:\Users\登入帳號\AppData\Roaming\XamarinDeviceManager

結論:
無解
似乎跟 hyper-v 有關聯...
又好像是跟 Windows 7 沒有 dismapi 元件有關
又感覺像是 Windows 8 以上才有支援 Dismapi

無法單獨開 emulator ,對於在專案 執行 Run 時,不影響它的作業,會一併叫起來
再到 ADM 上看,神奇的事,狀態會是「啟用中」


【c#】long = null 無 (long?)null

【c#】long  = null  無  (long?)null

class long? id = null 會發生錯誤

見鬼了  ? 問號不是 無 嗎?怎麼錯誤

原來 null 針對 數字有特別分 ,需要額外轉型別才能 定義 long? 會是 無

class long? id = 轉型 (long?)null  ,就搞定了