問題タブ [pfquery]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
nsmutablearray - pfquery...オブジェクトから配列へ..ラベルへ
parse を使用するのは初めてで、初心者です。
テーブルを作成し、配列のデータを行に表示します
cell.label1.text= [myArray objectAtIndex:indexPath.row];
今、解析中のクラスからデータを取得したいので、次のように書きました:
コードは機能しました。しかし、知りたいのは、オブジェクトを配列に入れる方法と、配列に行を入れる方法です。たとえば、行のすべての文字列: Name.
ありがとう
ios - PFQueryTableViewController 解析。画像を読み込んでいません
こんにちは、次のコードを試していますが、画像を表示できません
私も試します:
そして何もありません。セルに UIImage を手動で挿入する必要がありますか?
よろしく
web-services - パースで pfquery が機能しない
PFQuery *queryBankList = [PFQuery queryWithClassName:@"Blood_Bank_Master"];
objective-c - parse.com a query between two classes
** Edit : sorry I had to edit my question to clean out the other users i had so i delete everything.
so i manage to make some kind of relation between two users in one table on parse, this is how it's look :
my class is NewChat and the user 'XcnKqF0tmO' is my Current user. i'm trying to create an query to receive a text ( the text is : hello) from another class called phoneNumber :
as you can see the receiver 'T9kDJwePc' (on the first picture) is the same user 'ZZ6mRK..' (on the second picture. what i'm trying to do is to create a query from the Sender 'XcnKqf0tmO' (1st picture) to the T9kPDJwePc who is actually ( if i click on the reciever name ) is ZZ6MRKr5J1 and get the text " hello " into my TextField. I tried the following combination which didn't work :
my query return with no result , my NSLOG show : " object ( ) ". why I have no results ? since the receiver name on the first image and the object ID on the second image are equal...
ios - UICollectionView で下にスクロールするときに PFQuery を自動的に呼び出す方法
UICollectionView
各セルに が含まれていますPFObject
。これらのオブジェクトはそれぞれ何百もある可能性があるためUICollectionView
、すべてのオブジェクトを一度にクエリするのではなく、限られた量だけを呼び出し、ユーザーが最後に向かってスクロールするにつれて自動的にさらに多くのオブジェクトを呼び出します (エンドレス スクロールのようなものです)。多くのウェブアプリが使用しています)。
これらのタイプの呼び出しをサポートしますかPFQuery
? もしそうなら、どうすれば継続的かつ自動的に呼び出すことができますか?
ありがとう!
ios - 解析から読み込まれたクリックされたセルの値を取得しますか?
特定の情報をロードした PFQueryTableViewController があります。クリックしたセルの値を取得して、クリックしたセルのクラス名の情報を含む別のテーブルを開きたいです。私は多くの方法を試しましたが、うまくいきません。エラーが次のように表示されるため、セルのラベルの値を取得していないと思います。
キャッチされていない例外 'NSInvalidArgumentException' が原因でアプリを終了しています。理由: ' setObjectForKey: オブジェクトを nil にすることはできません (キー: クラス名)'
私はこのコードを使用しています:
ios - PFObject のポインターが現在のユーザーの「フレンドシップ」PFRelation にあるかどうかに基づく PFQuery
現在のユーザーPFRelation「友情」にあるPFObjectを投稿したユーザーに基づいてオブジェクトを照会しようとしています。NSArray と同じように PFRelation を使用して、これと同様のことを行うことができるかどうか疑問に思っていました..
@"user" は、PFObject を投稿した PFUser へのポインタです。
または、これを達成する唯一の方法が NSArray に PFRelation からの PFUsers を入力し、その結果を照会することである場合
前もって感謝します、エヴァン
ios - PARSE.com の PFquery から NSArray から objectId を取得する方法
私の PFQuery は次の説明を返します。クラスの objectId を取得しようとしています
YouQuestions
。たとえば、以下の説明Ovx3B1TnaC
では、quesAray の最初のインデックスの objectId です。しかし、私はそれを取得する方法がわかりません。
これは私がやった方法ですが、nilを返しました
PFQuery *fetchTimeLine = [PFQuery queryWithClassName:@"YouQuestions"];
[fetchTimeLine whereKeyExists:@"objectId"];
[fetchTimeLine findObjectsInBackgroundWithBlock:^(NSArray *quesArray, NSError *error)
{
for (int i =0; i<quesArray.count; i++)
{
PFObject *obj = [quesArray[i] objectForKey:@"objectId"];
[searchobjectIDsArray addObject:obj.objectId];
}
}];
編集:
こんな感じに直しました
for (PFObject *object in quesArray) {
NSLog(@"%@", object.objectId);
}