Angularjs是一个前端的Javascript MVC 库和框架,使前端得到更好的设计、维护和测试。它的核心特性有:MVC、双向数据绑定、指令和语义化标签、模块化工具、依赖注入、HTML模板,以及对常用工具的封装,例如$http、$cookies、$location等。本篇体验Angularjs...
分类:
Web程序 时间:
2014-07-15 08:30:53
阅读次数:
318
import java.util.Scanner;/** * Created by Administrator on 14-5-13. * 计算斐波那契数列 * * Result M(Problem prob) { if () return ; // The problem cannot be so...
分类:
其他好文 时间:
2014-07-15 00:39:15
阅读次数:
408
呃,被坑了几个小时,后来发现,在调用setResult的时候,requestCode随便传了个Activity的RESULT_OK,而这个常量的值是-1,导致onActivityResult没有被调用。握了棵草啊。。。看看文档:requestCode If >= 0, this code will ...
分类:
其他好文 时间:
2014-07-15 00:30:06
阅读次数:
3307
1.4.1、编译过程在编译环境配置完成后就可以在CMD中进行编译编译命令:ant –buildfile build.xml如图上所示编译成功(备注,编译过程中,get-revision:[exec]Result:1与编译结果没多大影响,可以忽略)1.4.2、编译是否成功验证Test.html(不能放...
分类:
其他好文 时间:
2014-07-15 00:26:49
阅读次数:
263
def say_goodnight(name) result ="Good night ." +name return resultenddef say_goodmorning(name) result ="Good morning .#{name}" return resultendde...
分类:
其他好文 时间:
2014-07-14 14:14:34
阅读次数:
189
//判断文件是否存在
bool FileExistsW(const wstring &fn)
{
WIN32_FIND_DATAW fd;
HANDLE hFile = FindFirstFileW(fn.c_str(),&fd);
if (hFile != INVALID_HANDLE_VALUE)
{
::FindClose(hFile);...
【转】SAP FTP Function本文示例如何使用SAP FTP Function将文件从应用服务器传输到另外一个FTP服务器上。DATA: BEGIN OF ig_ftp_result OCCURS 0, line(100), END OF ig_ftp_result.DATA: l_path...
分类:
其他好文 时间:
2014-07-14 10:48:27
阅读次数:
249
使用情境:我想输入www.abc.com/a/1后,跳转到www.abc.com/index.php/a/1
配置Nginx.conf在你的虚拟主机下添加:
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}
如果你的项目...
分类:
Web程序 时间:
2014-07-13 18:52:33
阅读次数:
258
FATAL conf.Configuration: error parsing conf file: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence.
14/07/12 23:51:40 ERROR namenode....
分类:
其他好文 时间:
2014-07-13 18:40:22
阅读次数:
291
默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www
vi /usr/local/nginx/conf/nginx.conf
将其中的
location / {
root html;
index index.php index.html index.htm;...
分类:
Web程序 时间:
2014-07-13 17:06:03
阅读次数:
219