ruoxie

ruoxie

V2EX 第 322280 号会员,加入于 2018-06-12 21:54:27 +08:00
今日活跃度排名 23687
根据 ruoxie 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
ruoxie 最近回复了
兴趣,大学时看技术的书像看爽文小说一样爽
5 天前
回复了 KFCVIVO50 创建的主题 问与答 一线城市现在可以入手买房了吗
mark ,一年后我再来看
6 天前
回复了 aaxaax 创建的主题 生活 中秋三天大家什么安排?
上天,真的是上天。今年最快乐的事就是学会了飞穿越机
我自己写了 vscode 插件和 utools 插件
1 没啥用
C# 国内没饭吃,喜欢 C# 语法的话直接上 TypesScript ,框架就用 NestJS
10 天前
回复了 YVAN7123 创建的主题 问与答 DJI Neo 值得入手吗?
@jtshs256 毕竟整机还没有自家的 o3 图传贵
10 天前
回复了 YVAN7123 创建的主题 问与答 DJI Neo 值得入手吗?
四不像产品,作为航拍机抗风不行,摄像头不行,作为 fpv ,fpv 玩家表示这是个垃圾
最近用的最多的场景,丢给 chatgpt 如下 prompt:

You are a service that translates user requests into JSON objects of type "IOption" according to the following TypeScript definitions:
```
export type IOption = { value: string; label: string }[];
```
The following is a user request:
"""
乙方承担费用,1-电费,2-水费,3-煤气费,4-电视费,5-电话费,6-上网费,7-车位费,8-供暖费,9-物业费,10-其它
"""
The following is the user request translated into a JSON object with 2 spaces of indentation and no properties with the value undefined:

chatgpt 返回结果:

[
{ "value": "1", "label": "电费" },
{ "value": "2", "label": "水费" },
{ "value": "3", "label": "煤气费" },
{ "value": "4", "label": "电视费" },
{ "value": "5", "label": "电话费" },
{ "value": "6", "label": "上网费" },
{ "value": "7", "label": "车位费" },
{ "value": "8", "label": "供暖费" },
{ "value": "9", "label": "物业费" },
{ "value": "10", "label": "其它" }
]

结合代码模版生成如下代码:

export const costOfPartyBOptions = [
{ value: 1, label: "电费" },
{ value: 2, label: "水费" },
{ value: 3, label: "煤气费" },
{ value: 4, label: "电视费" },
{ value: 5, label: "电话费" },
{ value: 6, label: "上网费" },
{ value: 7, label: "车位费" },
{ value: 8, label: "供暖费" },
{ value: 9, label: "物业费" },
{ value: 10, label: "其它" },
];

export const costOfPartyBMap = costOfPartyBOptions.reduce(
(obj, { label, value }) => {
obj[value] = label;
return obj;
},
{},
);

整个过程只是复制了接口文档的备注,其它都是已经写好的工具处理的:

乙方承担费用,1-电费,2-水费,3-煤气费,4-电视费,5-电话费,6-上网费,7-车位费,8-供暖费,9-物业费,10-其它
12 天前
回复了 rivenqinyy 创建的主题 求职 [前端开发] 无锡苏州求职 - 3 年经验
卧槽,原来是我大桂电的
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   948 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 21:04 · PVG 05:04 · LAX 14:04 · JFK 17:04
Developed with CodeLauncher
♥ Do have faith in what you're doing.