1、List<Product> ProductList = ViewBag.ProductList as List<Product>; 2、样式 <link href="~/Content/assets/global/plugins/select2/css/select2.min.css" rel= ...
分类:
其他好文 时间:
2017-09-07 13:38:07
阅读次数:
214
1、如果要在Python程序中执行这些目录和文件的操作怎么办?其实操作系统提供的命令只是简单地调用了操作系统提供的接口函数,Python内置的os模块也可以直接调用操作系统提供的接口函数。注意uname()函数在Windows上不提供,也就是说,os模块的某些函数是跟操作系统相关的。操作文件和目录的 ...
分类:
编程语言 时间:
2017-09-06 21:22:51
阅读次数:
276
SQL 错误: ORA-01591: 锁被未决分布式事务处理 7.2.428982 持有 01591. 00000 - "lock held by in-doubt distributed transaction %s" *Cause: Trying to access resource that ...
分类:
其他好文 时间:
2017-09-06 16:44:49
阅读次数:
954
通过 Composer 安装 如果还没有安装 Composer,在 Linux 和 Mac OS X 中可以运行如下命令: curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/compose ...
分类:
其他好文 时间:
2017-09-06 11:41:03
阅读次数:
191
mkdir ~.pip vim ~/.pipi/pipl.conf ini [global] index-ur= http://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com ...
分类:
其他好文 时间:
2017-09-05 00:11:32
阅读次数:
135
https://stackoverflow.com/questions/7335420/global-git-ignore git config --global core.excludesfile '~/.gitignore' git config --get core.excludesfile ...
分类:
其他好文 时间:
2017-09-04 09:49:02
阅读次数:
152
CNN: Inception-v3模型:https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/slim/python/slim/nets/inception_v3.py ...
分类:
其他好文 时间:
2017-09-03 22:14:14
阅读次数:
109
检查回文字符串 如果给定的字符串是回文,返回true,反之,返回false。 如果一个字符串忽略标点符号、大小写和空格,正着读和反着读一模一样,那么这个字符串就是palindrome(回文)。 注意你需要去掉字符串多余的标点符号和空格,然后把字符串转化成小写来验证此字符串是否为回文。 函数参数的值可 ...
分类:
其他好文 时间:
2017-09-03 01:12:57
阅读次数:
245
翻转字符串 先把字符串转化成数组,再借助数组的reverse方法翻转数组顺序,最后把数组转化成字符串。 你的结果必须得是一个字符串 当你完成不了挑战的时候,记得开大招'Read-Search-Ask'。 翻转字符串 先把字符串转化成数组,再借助数组的reverse方法翻转数组顺序,最后把数组转化成字 ...
分类:
其他好文 时间:
2017-09-03 00:31:58
阅读次数:
217