好吧,所以基本上我有一個變量在ajax中,我想發送到我的socket.io服務器來檢查變量是否已經在json數組中。socket.io變量檢查
的Ajax:
function isUniqueEmail(email) {
//email checking script here
$.get('info/mailcheck.js' + email, function(response) {
if(response == 1) {
alert("Your email is already on our list");
}
else {
alert("We will add you shortly");
};
})
};
JSON數組:
{"mail":
[
"[email protected]",
"[email protected]",
"[email protected]"
]}
的socket.io部分是其中IM困惑。基本上它只需要把變量(一個電子郵件)檢查它是否已經在數組中,並返回1,如果是,或者返回0,如果不是,並將其寫入數組中。
它試圖這樣的事情,但就像我需要它太不寫入JSON文件。 – lostAstronaut 2012-01-15 17:38:50