Improved translate russian language (#37646)

pull/37975/head
bitrixtoday 2019-12-23 10:47:51 +04:00 committed by Gregory Gubarev
parent 5dfb6b5de0
commit 2a587fc8ad
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ localeTitle: Создать и сохранить запись модели
## Description
<section id='description'>
Создайте экземпляр документа с помощью созданного ранее конструктора Person. Передайте в конструктор объект с полями name, age и FavoritesFoods. Их типы должны соответствовать типам в схеме Person. Затем вызовите метод document.save () для возвращенного экземпляра документа. Передайте ему обратный вызов, используя соглашение Node. Это общий шаблон, все последующие методы CRUD принимают функцию обратного вызова, подобную этой, в качестве последнего аргумента.
Создайте экземпляр документа с помощью созданного ранее конструктора Person. Передайте в конструктор объект с полями name, age и FavoritesFoods. Их типы должны соответствовать типам в схеме Person. Затем вызовите метод document.save() для возвращенного экземпляра документа. Передайте ему обратный вызов, используя соглашение Node. Это общий шаблон, все последующие методы CRUD принимают функцию обратного вызова, подобную этой, в качестве последнего аргумента.
<code>/* Example */</code>
<code>// ...</code>
<code>person.save(function(err, data) {</code>
@ -18,7 +18,7 @@ localeTitle: Создать и сохранить запись модели
## Instructions
<section id='instructions'>
Create a document instance using the <code>Person</code> constructor you built before. Pass to the constructor an object having the fields <code>name</code>, <code>age</code>, and <code>favoriteFoods</code>. Their types must conform to the ones in the Person Schema. Then call the method <code>document.save()</code> on the returned document instance. Pass to it a callback using the Node convention. This is a common pattern, all the following CRUD methods take a callback function like this as the last argument.
Создайте экземпляр документа, используя конструктор <code>Person</code>, который вы создали ранее. Передайте в конструктор объект, имеющий поля <code>name</code>, <code>age</code> и <code>favoriteFoods</code>. Их типы должны соответствовать тем, которые указаны в схеме Person. Затем вызовите метод <code>document.save()</code> для возвращенного экземпляра документа. Передайте ему обратный вызов, используя соглашение Node. Это общий шаблон, все последующие методы CRUD принимают функцию обратного вызова, подобную этой, в качестве последнего аргумента.
```js
/* Example */
@ -36,7 +36,7 @@ person.save(function(err, data) {
```yml
tests:
- text: Creating and saving a db item should succeed
- text: Создание и сохранение элемента БД должно завершиться успешно
testString: getUserInput => $.get(getUserInput('url') + '/_api/create-and-save-person').then(data => { assert.isString(data.name, '"item.name" should be a String'); assert.isNumber(data.age, '28', '"item.age" should be a Number'); assert.isArray(data.favoriteFoods, '"item.favoriteFoods" should be an Array'); assert.equal(data.__v, 0, 'The db item should be not previously edited'); }, xhr => { throw new Error(xhr.responseText); })
```