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


Golang Transaction.BaseUrl方法代碼示例

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


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

示例1: findItemSchemaByCollectionName

func (s *Server) findItemSchemaByCollectionName(t *transaction.Transaction) {
	collectionName := t.Params["collectionName"]
	itemSchema, err := s.DB.FindItemSchemaByCollectionName(collectionName)
	if err != nil {
		t.WriteError(err)
		return
	}
	itemSchema.AttachDefaultLinks(t.BaseUrl())
	t.WriteResult(itemSchema)
}
開發者ID:andreaugusto,項目名稱:beat,代碼行數:10,代碼來源:schema_routes.go

示例2: findCollectionSchemaByCollectionName

func (s *Server) findCollectionSchemaByCollectionName(t *transaction.Transaction) {
	collectionName := t.Params["collectionName"]
	itemSchema, err := s.DB.FindItemSchemaByCollectionName(collectionName)

	if err == db.ItemSchemaNotFound {
		t.WriteError(db.CollectionSchemaNotFound)
		return
	} else if err != nil {
		t.WriteError(err)
		return
	}
	collectionSchema := schemas.NewCollectionSchema(itemSchema)
	collectionSchema.ApplyBaseUrl(t.BaseUrl())

	t.WriteResult(collectionSchema)
}
開發者ID:andreaugusto,項目名稱:beat,代碼行數:16,代碼來源:schema_routes.go

示例3: findOneItemSchema

func (s *Server) findOneItemSchema(t *transaction.Transaction) {
	filter, err := db.NewFilterFromQueryString(t.Req.URL.RawQuery)

	if err != nil {
		t.WriteError(errors.Wraps(err, 400))
		return
	}

	itemSchema, findErr := s.DB.FindOneItemSchema(filter)
	if findErr != nil {
		t.WriteError(findErr)
		return
	}

	itemSchema.AttachDefaultLinks(t.BaseUrl())
	t.WriteResult(itemSchema)
}
開發者ID:andreaugusto,項目名稱:beat,代碼行數:17,代碼來源:schema_routes.go

示例4: createItemSchema

func (s *Server) createItemSchema(t *transaction.Transaction) {
	itemSchema, err := schemas.NewItemSchemaFromReader(t.Req.Body)

	if err != nil {
		t.WriteError(err)
		return
	}
	itemSchema.DiscardDefaultLinks()
	err = s.DB.CreateItemSchema(itemSchema)

	if err != nil {
		t.WriteError(err)
		return
	}

	itemSchema.AttachDefaultLinks(t.BaseUrl())
	t.WriteResultWithStatusCode(http.StatusCreated, itemSchema)
}
開發者ID:andreaugusto,項目名稱:beat,代碼行數:18,代碼來源:schema_routes.go

示例5: findItemSchema

func (s *Server) findItemSchema(t *transaction.Transaction) {
	filter, err := db.NewFilterFromQueryString(t.Req.URL.RawQuery)

	if err != nil {
		t.WriteError(errors.Wraps(err, 400))
		return
	}

	reply, findErr := s.DB.FindItemSchema(filter)
	if findErr != nil {
		t.WriteError(findErr)
		return
	}

	baseUrl := t.BaseUrl()
	for _, itemSchema := range reply.Items {
		itemSchema.AttachDefaultLinks(baseUrl)
	}

	t.WriteResult(reply)
}
開發者ID:andreaugusto,項目名稱:beat,代碼行數:21,代碼來源:schema_routes.go


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