コードの最初のブロックの場合、console.log( "ff:" + ff)は次のように出力されます:
ff:{_id:sd845y3hishofiuwhei、フルネーム:'sachin'}
console.log("ff JSON : "+JSON.stringify(ff)); // this line prints like below :
ff JSON:[{"_ id": "sd845y3hishofiuwhei"、 "fullname": "sachin"}]
その「サチン」を別の変数で別々に取得するにはどうすればよいですか?
var fullname=SampleModel.find({uname:req.session.uname},{fullname : true},function(err,ff){
if(!err){
console.log("ff : "+ff);
console.log("ff JSON : "+JSON.stringify(ff));
return ff;
}else {
return null;
}
});
以下のコードブロックは、「無効なオブジェクトID」のようなエラーを出します。何が問題になる可能性がありますか?
var ret= AnotherModel.find({_id : { $nin : ["1","2"] } }, function(err,details){
if(!err) {
res.send(details);
}
else {
console.log("Error : "+err);
res.send(err);
}
});
私はこのようなtextareaを実装しています
<textarea id="myarea" cols="100" rows="20" ></textarea>
行を変更すると出力ボックスの高さが変更されますが、「cols」を変更するとその列の幅は変更されません。出力ボックスの幅も狭いので、chromeとmozillaの両方をチェックインします。解決策は何ですか?ありがとう