翻译2.5 Curing Cycle*** The basecoat shall be cured until a peak metal temperature of 243 to 271 °C (470 to 520 °F) is achieved for 10 to 20 minutes. The grey topcoat shall be cured until a peak metal temperature of 171 to 185 °C (340 to 365 °F) is achieved for 5 to15 minutes. The black topcoat shall be cured until a peak metal temperature of 204 to 232 °C (400 to 450 °F) is achieved for 10 to 20 minutes. Deviations must be documented in writing from a Magni Technical representative.
时间: 2024-04-05 14:34:12 浏览: 10
2.5 固化周期*** 底漆应固化,直到金属表面的峰值温度达到243至271°C(470至520°F),持续10至20分钟。灰色面漆应固化,直到金属表面的峰值温度达到171至185°C(340至365°F),持续5至15分钟。黑色面漆应固化,直到金属表面的峰值温度达到204至232°C(400至450°F),持续10至20分钟。必须以书面形式记录偏差,由Magni技术代表审核。
相关问题
有一個json類型的數據:{"itemName": "Curing Start_Time", "itemValue": "2023/5/26 11:11:19"},如何提取出該json對象的值
提取出该 JSON 对象的值,可以使用 JSON 解析库或者一些编程语言内置的 JSON 解析函数。以下是使用 Python 语言的示例代码:
```python
import json
json_string = '{"itemName": "Curing Start_Time", "itemValue": "2023/5/26 11:11:19"}'
json_object = json.loads(json_string)
item_name = json_object['itemName']
item_value = json_object['itemValue']
print(item_name) # 输出:Curing Start_Time
print(item_value) # 输出:2023/5/26 11:11:19
```
首先将 JSON 字符串解析成 JSON 对象,然后通过对象的键名来获取对应的值。在本例中,`itemName` 的值为 `Curing Start_Time`,`itemValue` 的值为 `2023/5/26 11:11:19`。
如何把[{"itemName": "Curing Start_Time", "itemValue": "2023/5/26 11:11:19"}, {"itemName": "Curing End_time", "itemValue": "2023/5/26 11:16:19"}, {"itemName": "UV_Light_power_Z", "itemValue": "500"}, {"itemName": "Cure_Temp", "itemValue": "23.7"}, {"itemName": "Cure Recipe", "itemValue": "A"}, {"itemName": "lampBulbResult", "itemValue": "OK"}, {"itemName": "bugRegion", "itemValue": "0"}, {"itemName": "bugTime", "itemValue": "0"}]這個text類型的數據轉換成數組
可以使用 PostgreSQL 中的 `jsonb_array_elements` 函数将 JSON 数组字符串转换为数组。具体操作可以参考以下示例:
```
-- 假设该 JSON 数组字符串存储在 my_table 表的 my_column 列中
SELECT jsonb_array_elements(my_table.my_column) AS my_array FROM my_table;
```
执行以上查询语句,即可将 JSON 数组字符串转换为数组。
需要注意的是,如果使用的是 PostgreSQL 9.3 或更低版本,则需要使用 `json_array_elements` 函数来实现相同的功能。
阅读全文