// router.js
import Vue from 'vue'
import Router from 'vue-router'
import child2 from './child2.vue'Vue.use(Router)export default new Router({routes:[{path:'/child2',name:'child2',component: child2}]
})
原题网址:http://www.lintcode.com/zh-cn/problem/hex-conversion/ Given a decimal number n and an integer k, Convert decimal number n to base-k. 注意事项 1.0<n<2^31-1, 2<k<162.Each letter over 9 is indicated in uppercase 您在真实的面试中…
后台代码: List<WMSRptJHJY> wpjh WMSRptJHJYManage.GetModelList(""); ViewBag.WPJH Newtonsoft.Json.JsonConvert.SerializeObject(wpjh); 前台代码: var aa Html.Raw(ViewBag.WPJH); var PWJH eval("(" aa &…
记录下工作中常用的sql 删除重复数据 delete from student where id not in (select min(id) from student group by name);
-- 该语句在mysql下会报错,
-- 执行报错:1093 - You cant specify target table student for update in FROM clause
-- 原因是…