當前位置: 首頁>>代碼示例>>Python>>正文


Python DataController.getFlashcardsFromBoxes方法代碼示例

本文整理匯總了Python中flashcardapp.datacontroller.DataController.getFlashcardsFromBoxes方法的典型用法代碼示例。如果您正苦於以下問題:Python DataController.getFlashcardsFromBoxes方法的具體用法?Python DataController.getFlashcardsFromBoxes怎麽用?Python DataController.getFlashcardsFromBoxes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在flashcardapp.datacontroller.DataController的用法示例。


在下文中一共展示了DataController.getFlashcardsFromBoxes方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_getFlashcardsFromBoxes

# 需要導入模塊: from flashcardapp.datacontroller import DataController [as 別名]
# 或者: from flashcardapp.datacontroller.DataController import getFlashcardsFromBoxes [as 別名]
    def test_getFlashcardsFromBoxes(self):
        """
        Steps this test will run:

        1. Creates a new DataController
        2. Attempts to retreive the json representation of all Flashcard from
           the a list of boxes
        3. Asserts the number of flashcards is 2
        4. Asserts the Flashcard term is "Guten Tag"
        5. Asserts the Flashcard defintion is "Good Day"
        """
        dc = DataController()
        numOfCards = 5
        boxes = [1,13]
        translationLabel = Label.objects.get(name="Translation")
        data = dc.getFlashcardsFromBoxes(boxes)
        self.assertEqual(data['message'], DataController.SUCCESS_STR)
        cards = data['cards']
        self.assertEqual(len(cards), numOfCards)
        self.assertEqual(cards[0]['term'], "Der Bauch")
        self.assertEqual(cards[0]['defaultSideLabel_id'], translationLabel.Id)
        textside = TextSide.objects.get(flashcardKey=cards[0]['id'], labelKey=translationLabel)
        self.assertEqual(textside.text, "The Stomach")

        self.assertEqual(cards[1]['term'], "Das Wetter")
        self.assertEqual(cards[1]['defaultSideLabel_id'], translationLabel.Id)
        textside = TextSide.objects.get(flashcardKey=cards[1]['id'], labelKey=translationLabel)
        self.assertEqual(textside.text, "The Weather")

        self.assertEqual(cards[2]['term'], "Das Essen")
        self.assertEqual(cards[2]['defaultSideLabel_id'], translationLabel.Id)
        textside = TextSide.objects.get(flashcardKey=cards[2]['id'], labelKey=translationLabel)
        self.assertEqual(textside.text, "The Food")
開發者ID:hrusza01,項目名稱:Flash-Card-Website-2013,代碼行數:35,代碼來源:tests.py

示例2: getCardsFromBox

# 需要導入模塊: from flashcardapp.datacontroller import DataController [as 別名]
# 或者: from flashcardapp.datacontroller.DataController import getFlashcardsFromBoxes [as 別名]
def getCardsFromBox(request, boxId):
    ''' Ajax wrapper for the DataController function 'getFlashcardsFromBoxes'
    which handles getting the flashcards from one box

    *Takes*
      The id of the box
    *Returns*
      A json string representing the flashcards of a given box

    See the DataController documentation for more information
    '''
    idList = [boxId]
    dc = DataController()
    return json.dumps(dc.getFlashcardsFromBoxes(idList))
開發者ID:hrusza01,項目名稱:Flash-Card-Website-2013,代碼行數:16,代碼來源:ajax.py

示例3: cardviewer

# 需要導入模塊: from flashcardapp.datacontroller import DataController [as 別名]
# 或者: from flashcardapp.datacontroller.DataController import getFlashcardsFromBoxes [as 別名]
def cardviewer(request):
    boxesString = request.GET.get('boxes')
    boxesList = boxesString.split("_")
    numberofcards = request.GET.get("numberofcards");
    if numberofcards != None:
        numberofcards = int(numberofcards)
    testme = request.GET.get("testme")
    #pdb.set_trace()
    t = loader.get_template('flashcardapp/cardviewer.html')
    dc = DataController()
    #Check to see if we are in regular study mode, or test mode
    if (testme):
        cardsDict = dc.getRandomFlashcardsFromBoxes(boxesList,numberofcards)
    else:
        cardsDict = dc.getFlashcardsFromBoxes(boxesList)

    if cardsDict['message'] == DataController.SUCCESS_STR:
        cards = json.dumps(cardsDict['cards'])
        c = Context({"cards":cards,"user":testUser(request)})
        return HttpResponse(t.render(c))
    else:
        return HttpResponse(t.render(Context({"user":testUser(request)})))
開發者ID:hrusza01,項目名稱:Flash-Card-Website-2013,代碼行數:24,代碼來源:views.py


注:本文中的flashcardapp.datacontroller.DataController.getFlashcardsFromBoxes方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。