You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 5-network/02-formdata/article.md
+40-40
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,26 @@
1
1
2
2
# FormData
3
3
4
-
This chapter is about sending HTML forms: with or without files, with additional fields and so on.
4
+
این فصل در مورد ارسال فرمهای HTML است، با یا بدون فایل، با فیلدهای اضافی و غیره.
5
5
6
-
[FormData](https://xhr.spec.whatwg.org/#interface-formdata)objects can help with that. As you might have guessed, it's the object to represent HTML form data.
6
+
شیء [FormData](https://xhr.spec.whatwg.org/#interface-formdata)میتواند به شما در این زمینه کمک کنند. همانطور که ممکن است حدس زده باشید، این شیء برای نمایش دادن دادههای فرم HTML استفاده میشود.
7
7
8
-
The constructor is:
8
+
constructor به صورت زیر است:
9
9
```js
10
10
let formData =newFormData([form]);
11
11
```
12
12
13
-
If HTML `form` element is provided, it automatically captures its fields.
13
+
اگر عنصر `فرم` HTML وجود داشته باشد به طور خودکار فیلدهای آن را گرفته و ذخیره میکند.
14
14
15
-
The special thing about `FormData` is that network methods, such as `fetch`, can accept a `FormData` object as a body. It's encoded and sent out with `Content-Type: multipart/form-data`.
15
+
ویژگی مهم اینکه از `FormData` متدهای شبکه مانند `fetch` میتوانند یک شیء `FormData` را در بدنه (body) درخواست قبول کنند. این دادهها با هدر `Content-Type: multipart/form-data` رمزگذاری شده و ارسال میشوند.
16
+
17
+
.از نظر سرور، این مانند ارسال فرم معمولی به نظر میرسد
16
18
17
-
From the server point of view, that looks like a usual form submission.
19
+
## ارسال یک فرم ساده
18
20
19
-
## Sending a simple form
21
+
بیایید ابتدا یک فرم ساده را بفرستیم.
20
22
21
-
Let's send a simple form first.
22
-
23
-
As you can see, that's almost one-liner:
23
+
همانطور که مشاهده میکنید، این تقریباً یک خط کد است:
24
24
25
25
```html run autorun
26
26
<formid="formElem">
@@ -47,26 +47,26 @@ As you can see, that's almost one-liner:
47
47
</script>
48
48
```
49
49
50
-
In this example, the server code is not presented, as it's beyond our scope. The server accepts the POST request and replies "User saved".
50
+
در این مثال، کد سرور نمایش داده نشده است، چرا که خارج از بحث ما است. سرور درخواست POST را قبول کرده و با پاسخ "کاربر ذخیره شد" پاسخ میدهد.
51
51
52
-
## FormData Methods
52
+
## متدهای FormData
53
53
54
-
We can modify fields in `FormData`with methods:
54
+
ما میتوانیم با استفاده از متدهای `FormData`فیلدها را تغییر دهیم:
55
55
56
-
-`formData.append(name, value)` - add a form field with the given`name`and`value`,
57
-
-`formData.append(name, blob, fileName)` - add a field as if it were `<input type="file">`, the third argument `fileName`sets file name (not form field name), as it were a name of the file in user's filesystem,
58
-
-`formData.delete(name)` - remove the field with the given `name`,
59
-
-`formData.get(name)` - get the value of the field with the given `name`,
60
-
-`formData.has(name)` - if there exists a field with the given `name`, returns `true`, otherwise `false`
56
+
-`formData.append(name, value)` - اضافه کردن یک فیلد به فرم با`name`و`value` داده شده
57
+
-`formData.append(name, blob, fileName)` - اضافه کردن یک فیلد به عنوان `<input type="file">` آرگومان سوم `fileName`نام فایل را تنظیم میکند (نه نام فیلد فرم)، به عنوان نام فایل در سیستم کاربر
58
+
-`formData.delete(name)` - حذف فیلد با `name` داده شده
59
+
-`formData.get(name)` - دریافت مقدار فیلد با `name` داده شده
60
+
-`formData.has(name)` - اگر یک فیلد با `name` داده شده وجود داشته باشد `true` و در غیر اینصورت `false` را برمیگرداند.
61
61
62
-
A form is technically allowed to have many fields with the same`name`, so multiple calls to `append`add more same-named fields.
62
+
یک فرم به طور فنی اجازه دارد که فیلدهای زیادی با همان`name` داشته باشد بنابراین فراخوانیهای چندگانه به `append`منجر به افزودن فیلدهایی با همان نام میشود.
63
63
64
-
There's also method`set`, with the same syntax as `append`. The difference is that `.set` removes all fields with the given `name`, and then appends a new field. So it makes sure there's only one field with such `name`, the rest is just like `append`:
64
+
همچنین یک متد`set` وجود دارد با همان سینتکسی که `append` دارد. تفاوت این است که `set.` تمامی فیلدهایی که `name`داده شده را دارا میباشند را حذف کرده و سپس یک فیلد جدید با همان نام اضافه میکند. بنابراین، این گونه مطمئن میشود که تنها یک فیلد با این `name` وجود دارد بقیه همانند `append` هستند:
65
65
66
66
-`formData.set(name, value)`,
67
67
-`formData.set(name, blob, fileName)`.
68
68
69
-
Also we can iterate over formData fields using `for..of`loop:
69
+
همچنین میتوانیم با استفاده از حلقه `for..of`روی فیلدهای formData حلقه بزنیم:
70
70
71
71
```js run
72
72
let formData =newFormData();
@@ -79,11 +79,11 @@ for(let [name, value] of formData) {
79
79
}
80
80
```
81
81
82
-
## Sending a form with a file
82
+
## ارسال فرم به همراه یک فایل:
83
83
84
-
The form is always sent as `Content-Type: multipart/form-data`, this encoding allows to send files. So, `<input type="file">`fields are sent also, similar to a usual form submission.
84
+
فرم همواره به عنوان `Content-Type: multipart/form-data` ارسال میشود. این رمزگذاری امکان ارسال فایلها را فراهم میکند. بنابراین، فیلدهای `<input type="file">`نیز مشابه یک فرم ارسال میشوند.
85
85
86
-
Here's an example with such form:
86
+
مثال با چنین فرمی به صورت زیر است:
87
87
88
88
```html run autorun
89
89
<formid="formElem">
@@ -110,15 +110,15 @@ Here's an example with such form:
110
110
</script>
111
111
```
112
112
113
-
## Sending a form with Blob data
113
+
## ارسال یک فرم با داده Blob
114
114
115
-
As we've seen in the chapter <info:fetch>, it's easy to send dynamically generated binary data e.g. an image, as`Blob`. We can supply it directly as `fetch` parameter `body`.
115
+
همانطور که در فصل <info:fetch> دیدیم، ارسال دادههای دودویی به صورت پویا مانند یک تصویر به عنوان`Blob` آسان است. میتوانیم آن را به عنوان پارامتر `body` مستقیماً با `fetch` ارسال کنیم.
116
116
117
-
In practice though, it's often convenient to send an image not separately, but as a part of the form, with additional fields, such as "name" and other metadata.
117
+
در عمل اغلب مناسبتر است که تصویر را به صورت جداگانه نفرستیم بلکه به عنوان یک قسمت از فرم با فیلدهای اضافی مانند "نام" و دیگر فرادادهها بفرستیم.
118
118
119
-
Also, servers are usually more suited to accept multipart-encoded forms, rather than raw binary data.
119
+
همچنین، سرورها معمولاً برای پذیرش فرمهای رمزگذاری چند قسمتی (multipart-encoded) مناسبتر از داده دودویی خام هستند.
120
120
121
-
This example submits an image from `<canvas>`, along with some other fields, as a form, using`FormData`:
121
+
یک مثال از ارسال تصویر`<canvas>` به همراه باقی فیلد ها در قالب یک فرم با استفاده از`FormData`:
122
122
123
123
```html run autorun height="90"
124
124
<bodystyle="margin:0">
@@ -154,36 +154,36 @@ This example submits an image from `<canvas>`, along with some other fields, as
154
154
</body>
155
155
```
156
156
157
-
Please note how the image `Blob`is added:
157
+
به نحوه اضافه شدن `Blob`توجه کنید:
158
158
159
159
```js
160
160
formData.append("image", imageBlob, "image.png");
161
161
```
162
162
163
-
That's same as if there were `<input type="file" name="image">`in the form, and the visitor submitted a file named `"image.png"` (3rd argument) with the data`imageBlob` (2nd argument) from their filesystem.
163
+
این همانند این است که در فرم `<input type="file" name="image">`وجود داشته باشد و بازدیدکننده یک فایل به نام `"image.png"` (آرگومان سوم) را با داده`imageBlob` (آرگومان دوم) از سیستم خود ارسال کند.
164
164
165
-
The server reads form data and the file, as if it were a regular form submission.
165
+
سرور دادههای فرم و فایل را میخواند انگار که یک ارسال فرم معمولی انجام شده است.
166
166
167
-
## Summary
167
+
## خلاصه
168
168
169
-
[FormData](https://xhr.spec.whatwg.org/#interface-formdata)objects are used to capture HTML form and submit it using `fetch`or another network method.
169
+
شی های [FormData](https://xhr.spec.whatwg.org/#interface-formdata)برای گرفتن فرم HTML و ارسال آن با استفاده از `fetch`یا یک متد های دیگر شبکه استفاده میشوند.
170
170
171
-
We can either create`new FormData(form)`from an HTML form, or create an object without a form at all, and then append fields with methods:
171
+
ما میتوانیم یا یک`new FormData(form)`جدید از یک فرم HTML ایجاد کنیم، یا یک شیء بدون فرم ایجاد کنیم و سپس با استفاده از متدها فیلدها را اضافه کنیم:
172
172
173
173
-`formData.append(name, value)`
174
174
-`formData.append(name, blob, fileName)`
175
175
-`formData.set(name, value)`
176
176
-`formData.set(name, blob, fileName)`
177
177
178
-
Let's note two peculiarities here:
178
+
به دو نکته ویژه در اینجا توجه کنید:
179
179
180
-
1.The `set`method removes fields with the same name, `append`doesn't. That's the only difference between them.
181
-
2.To send a file, 3-argument syntax is needed, the last argument is a file name, that normally is taken from user filesystem for `<input type="file">`.
180
+
1. متد `set`فیلدهای با همان نام را حذف میکند، اما `append`اینکار را نمیکند. این تنها تفاوت بین آنهاست.
181
+
2.برای ارسال یک فایل، نیاز به سینتکس با 3 آرگومان است، آخرین آرگومان نام فایل است که به طور معمول از فایل سیستم کاربر برای `<input type="file">` گرفته میشود.
0 commit comments