V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  rabbbit  ›  全部回复第 55 页 / 共 109 页
回复总数  2178
1 ... 51  52  53  54  55  56  57  58  59  60 ... 109  
某些企业之所以能开出很低的价格是因为人家有现成的,改改就能交差.
你这从零开发搞不好连本钱都不够.

建议:
真的不要找什么架构.
不要单招安卓 /ios, 看看能不能找个前端用 web 套壳.
一个月真的做不完...
2020-04-11 20:15:23 +08:00
回复了 opopoipipip 创建的主题 上海 碰到一个奇葩的房东
@opopoipipip
额,这玩意我这边很多实体店都是包安装的.自己装也很容易,有皮垫连生料带都不用上.
2020-04-11 20:02:16 +08:00
回复了 opopoipipip 创建的主题 上海 碰到一个奇葩的房东
流 -> 留
2020-04-11 20:02:04 +08:00
回复了 opopoipipip 创建的主题 上海 碰到一个奇葩的房东
额,出租屋水龙头没必要买那么好的,淘宝买个几十块的够用好几年的.
要不你把那个坏的流着,走时候给他装回去.好的带走?
2020-04-11 19:56:31 +08:00
回复了 static97 创建的主题 求职 19 专科毕业找工作自闭了
别急,本科的也一样找不到.
2020-04-11 19:33:06 +08:00
回复了 Taya 创建的主题 求职 211 大学软件工程 20 届毕业生找实习,经历有点杂求助下!
毕业了就不能投实习了,只能投社招的岗位.
不过还好,看学历是个大佬,找工作应该没问题.
只是问题是目标岗位是啥,没想过以后想从事哪个岗位吗?
@lithbitren 空格是怎么打出来的?
2
interface Student {
...name: string,
...score: number
}
function groupBy(students: Student[]) {
...const group: { [propName: string]: Student[] } = {};
...for (let i of students) {
......const grade = getGrade(i.score);
......if (!group[grade]) {
.........group[grade] = []
......}
......group[grade].push(i)
...}
...return group;
}
1
interface TreeNode {
...id: String,
...label: String,
...children?: TreeNode[]
}

function findNodeById(root: TreeNode, id: string): TreeNode {
...if (root.id === id) {
......return root;
...}
...
...if (root.children) {
......for (let i of root.children) {
.........const child = findNodeById(i, id);
.........if (child) {
............return child
.........}
......}
...} else {
... return null;
...}
}

console.assert(findNodeById(tree, '1').label === 'first', '1')
console.assert(findNodeById(tree, '2').label === 'second', '2')
console.assert(findNodeById(tree, '3').label === 'third', '3')
console.assert(findNodeById(tree, '4').label === 'fourth', '4')
console.assert(findNodeById(tree, '5').label === 'fifth', '5')
2020-04-09 17:18:22 +08:00
回复了 simon888888 创建的主题 问与答 休学还是读书
@simon888888 估计是忽悠了,你可以问问老板给她开多少, 再跟她对比下互联网 大厂的 UI 能开多少,用 money 把她忽悠回来.学视觉传达以后去拍电影或者 UI UX 啥的不比在画室里 8246 强多了.
2020-04-09 17:04:12 +08:00
回复了 simon888888 创建的主题 问与答 休学还是读书
另外我以前高考在画班集训时候的作息是 8 ~ 24 ,每周 6 天.真的不建议去这种地方当老师...
2020-04-09 16:59:53 +08:00
回复了 simon888888 创建的主题 问与答 休学还是读书
广美的?
画班助教一般都赚不到什么钱,非纯艺术(例如油画 雕塑系),或者以后不打算往美术高考培训走,不建议去浪费时间.
2020-04-09 16:53:05 +08:00
回复了 TomeWong 创建的主题 程序员 Electron 创建子进程处理 上传文件的 MD5 计算和上传逻辑
可以用 child_process.fork 配合 send 和 on("message")
2020-04-09 16:42:55 +08:00
回复了 Ritter 创建的主题 Vue.js 大佬们 vue 这段动态渲染的代码为什么不行
const tipComponent = new tipComponentConstruct().$mount();
tipComponent.tableData[0].data = 'xxx'
console.log(tipComponent.$el.outerHTML) // 漏了一行
tipComponent.$nextTick(() => {
...const html = tipComponent.$el.outerHTML
...console.log(html)
})
2020-04-09 16:40:46 +08:00
回复了 Ritter 创建的主题 Vue.js 大佬们 vue 这段动态渲染的代码为什么不行
@Ritter
element-table 里面有默认值,他会先用默认值去渲染 Dom.
你可以试下下面这个例子, console 输出的还是默认值:

const tipComponent = new tipComponentConstruct().$mount();
tipComponent.tableData[0].data = 'xxx' // 注意这里
tipComponent.$nextTick(() => {
...const html = tipComponent.$el.outerHTML
...console.log(html)
})

至于取 nextTick 里的值, 可以用 watch

Vue.extend({
...data() {
......return {
.........html: null
......}
...}
...watch: {
......html(value) {console.log(value)}
...}
})
a.$nextTick(() => {
...tipComponent.html = a.$el.outerHTML
})
2020-04-09 16:16:36 +08:00
回复了 Ritter 创建的主题 Vue.js 大佬们 vue 这段动态渲染的代码为什么不行
@Ritter 看不懂,写个完整点的例子发过来看看.
2020-04-09 16:02:14 +08:00
回复了 Ritter 创建的主题 Vue.js 大佬们 vue 这段动态渲染的代码为什么不行
直接取当然没变化, Vue 不会立刻修改 Dom.
2020-04-09 16:00:23 +08:00
回复了 Ritter 创建的主题 Vue.js 大佬们 vue 这段动态渲染的代码为什么不行
tipComponent.$nextTick(() => {
...const html = tipComponent.$el.outerHTML
...console.log(html)
})
sql 初学者的想法,可能有错误:
1 不要拿学号和姓名当主键.
2 给学号设置 UNIQUE
3 姓名可能会重复吧,不建议 UNIQUE
2020-04-07 20:31:30 +08:00
回复了 zhaiblog 创建的主题 分享发现 Github Pages 在维护吗?
已恢复
1 ... 51  52  53  54  55  56  57  58  59  60 ... 109  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1119 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 22:37 · PVG 06:37 · LAX 15:37 · JFK 18:37
Developed with CodeLauncher
♥ Do have faith in what you're doing.