程式心得筆記 工程屍的日子 | Mr. 一顆痣 a.k.a. bigd
記錄寫程式的一些筆記跟心得
提案合作請來信洽談 bigdstut@gmail.com
星期二, 2月 21, 2023
[Eggplant] iOS Gateway 授權問題
久久連一下eggplant iOS gateway異常的話,
建議重走一下apple deveplop的相關的授權流程機制就會正常了。
在診斷通常會有二個警告會沒有綠色,
主要注意新的測試主機上有相關的對應的授權檔案即可
(因為也不知道怎麼清除ios gateway上舊的資料 xd)
星期一, 2月 13, 2023
Angular 1.5 取得表單變數與重設
常見需要在submit後reset表單的狀態與所有欄位重置預設值參考:
取得表單變數
$scope
.
initContactForm
=
function
(
contactName
){
logger
.
debug
(
'initContactForm'
);
$scope
.
contactForm
=
contactName
;
};
重設
$scope
.
restart
=
function
(){
logger
.
debug
(
'restart'
);
$scope
.
contactForm
.
$setPristine
();
$scope
.
isShowThanks
=
false
;
//reset
$scope
.
contact
= {
type
:
'0'
,
name
:
null
,
mobilePhone
:
null
,
meetdate
:
null
,
meettime
:
'9:00'
,
company
:
'明久家具嘉義店'
,
jobTitle
:
null
,
email
:
null
,
title
:
null
,
content
:
null
//base64 encode
};
};
‹
›
首頁
查看網路版