2019年2月28日 星期四

從 Postman 中取得 C# 程式碼套用在專案上

當我們從 Postman 中測試完成 api 的可用性時,
還可以從 code 選項選擇我們想要的程式語言,
直接提取程式碼使用,這裡以 C# 當範例。


Postman 建議使用的兩組 Header 可以刪除,並沒有用到!



其中 Visual Studio 中要呼叫 api 的專案需要 Nuget 安裝 RestSharp 套件


回到程式碼加上參考後就能順利使用

ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected.

當你在對你的 Angular 專案執行 ng serve 時,突然出現以下錯誤:
ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected.
node_modules/rxjs/internal/types.d.ts(81,74): error TS1005: ';' expected.
node_modules/rxjs/internal/types.d.ts(81,77): error TS1109: Expression expected.


以系統管理員身份執行 cmd,cd 到你的 Angular 專案後執行:
npm install rxjs@6.0.0 --save
將 rxjs 版本轉到 6.0.0 後再執行 ng serve 就可以順利把專案開起來了!

remove last word from SQL query

SET @columnSql = SUBSTRING ( @columnSql , 1 , LEN ( @columnSql ) - 1 )