V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ruoxie  ›  全部回复第 2 页 / 共 32 页
回复总数  638
1  2  3  4  5  6  7  8  9  10 ... 32  
56 天前
回复了 rqzrqh 创建的主题 教育 想给儿子报个无人机兴趣班
穿越机吧,普通航拍无人机和穿越机的操作难度不是一个层次的,据说现在穿越机还有特长生名额
57 天前
回复了 xiao8276 创建的主题 生活 2024 年了,回老家务农真能赚到钱吗
赚不赚钱不知道,反正我是做不了一点,老家那边都是种甘蔗的,我觉得护理甘蔗是世界上最苦逼的活。家里的地已经不种了,我爸全部种了草养牛
63 天前
回复了 laters 创建的主题 问与答 什么牌子的剃须刀好用
一天一次
63 天前
回复了 laters 创建的主题 问与答 什么牌子的剃须刀好用
吉利手动,我也觉得很容易钝
玩什么航拍无人机,上穿越机,穿越机拍出来的东西才有味道
https://www.bilibili.com/video/BV14q44e2EA8
不洗,即使国庆这种比较长的假期。两条裤子,一次性内裤,足够一天一换的 T 恤
兴趣,大学时看技术的书像看爽文小说一样爽
81 天前
回复了 KFCVIVO50 创建的主题 问与答 一线城市现在可以入手买房了吗
mark ,一年后我再来看
82 天前
回复了 aaxaax 创建的主题 生活 中秋三天大家什么安排?
上天,真的是上天。今年最快乐的事就是学会了飞穿越机
我自己写了 vscode 插件和 utools 插件
C# 国内没饭吃,喜欢 C# 语法的话直接上 TypesScript ,框架就用 NestJS
86 天前
回复了 YVAN7123 创建的主题 问与答 DJI Neo 值得入手吗?
@jtshs256 毕竟整机还没有自家的 o3 图传贵
86 天前
回复了 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-其它
88 天前
回复了 rivenqinyy 创建的主题 求职 [前端开发] 无锡苏州求职 - 3 年经验
卧槽,原来是我大桂电的
1  2  3  4  5  6  7  8  9  10 ... 32  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1066 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 37ms · UTC 19:15 · PVG 03:15 · LAX 11:15 · JFK 14:15
Developed with CodeLauncher
♥ Do have faith in what you're doing.