问题列表 - 第47993页

ASP.Net MVC 3显示模板和编辑模板自定义位置,如何?

我要使用Nuts,我正在使用MVCContrib,使用Portable Areas创建可插拔站点,到目前为止一切运行良好,除了当我开始使用MVC模板时,发生的事情是如果我将模板放在相应的文件夹中查看它的工作原理,例子

HostApplication/Views/Home/DisplayTemplates/FirstName.cshtml
HostApplication/Areas/PortableArea_Blog/Views/Home/DisplayTemplates/Auther.cshtml
Run Code Online (Sandbox Code Playgroud)

但我真正想要的是能够创建通用模板从主机应用程序或便携式区域设置和利用它,所以要做到这一点,我创建了一个新的便携式区域称为DisplayTemplates(利用MVCContrib能力编译视图),这里是便携式区域结构

DisplayTemplates
|-Views
  |-CommentTemplate.cshtml
Run Code Online (Sandbox Code Playgroud)

现在在我的主机应用程序中我创建了一个测试模型并添加了UIHint属性

public class HostModel
    {


        [UIHint("~/Areas/DisplayTemplates/Comment.cshtml")]
        public string Name { get; set; }
    }
Run Code Online (Sandbox Code Playgroud)

但它不起作用,所以我认为它与部分视图位置有关,所以我创建了一个CustomView引擎来查找该位置的部分视图并在Global.asax中注册它,这里有一个简短的想法,所以我不会厌烦你完整的代码

public class AreaViewEngine : RazorViewEngine
    {
        public AreaViewEngine()
        {

            // {0} = View name
            // {1} = Controller name

            // View locations
            ViewLocationFormats = new[]
                                      {
                                          "~/Areas/DisplayTemplates/{0}.cshtml"

                                      };

            PartialViewLocationFormats = ViewLocationFormats;

            AreaPartialViewLocationFormats = ViewLocationFormats;
        }

        protected override IView CreatePartialView(ControllerContext controllerContext, string partialPath)
        {
            return new RazorView(controllerContext, partialPath, null, true, new[] { "cshtml" });
        }

        protected override IView …
Run Code Online (Sandbox Code Playgroud)

asp.net-mvc razor asp.net-mvc-3

11
推荐指数
2
解决办法
1万
查看次数

如何编写XMl文件在android中使用XMLStreamWriter

我想在这里创建XML文件是我的以下代码

String fileName = "jasstech.xml";
XMLOutputFactory xof =  XMLOutputFactory.newInstance();
XMLStreamWriter xtw = null;**

try    
{

  xtw = xof.createXMLStreamWriter(new FileOutputStream(fileName), "UTF-8");    
  xtw.writeStartDocument("UTF-8", "1.0");    
  xtw.writeStartElement("root");    
  xtw.writeComment("This is an attempt to create an XML file with StAX");    
  xtw.writeStartElement("foo");    
  xtw.writeAttribute("order", "1");
  xtw.writeStartElement("meuh");
  xtw.writeAttribute("active", "true");
  xtw.writeCharacters("The cows are flying high this Spring");
  xtw.writeEndElement();
  xtw.writeEndElement();
  xtw.writeStartElement("bar");
  xtw.writeAttribute("order", "2");
  xtw.writeStartElement("tcho");
  xtw.writeAttribute("kola", "K");
  xtw.writeCharacters("Content of tcho tag");
  xtw.writeEndElement();
  xtw.writeEndElement();
  xtw.writeEndElement();
  xtw.writeEndDocument();

}

catch (XMLStreamException e)
{

  e.printStackTrace();
}

catch (IOException ie)
{
  ie.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)

以上相同代码在JAVA项目中工作正常但在Android项目中给出以下错误

03-03 07:48:40.778: ERROR/AndroidRuntime(719): …
Run Code Online (Sandbox Code Playgroud)

android

2
推荐指数
1
解决办法
6736
查看次数

垂直线javascript麻烦

document.write(new String("abgigi").search("|"));
Run Code Online (Sandbox Code Playgroud)

上面的代码显示0而不是预期的-1.为什么会这样?

javascript line

1
推荐指数
1
解决办法
427
查看次数

预处理器指令#if与普通if之间的区别

什么是预处理器指令之间的差异#if和正常ifç?我是C的新手.

c if-statement c-preprocessor

23
推荐指数
2
解决办法
1万
查看次数

"脏"和"居民"与虚拟记忆有什么关系?

我退出了我大学的CS课程......所以,对计算机科学有充分了解的人可以告诉我:Dirty and Resident与虚拟内存有什么关系?并且,对于奖励积分,无论如何,虚拟内存到底是什么?我正在使用Instruments中的Allocations/VM Tracker工具来分析iOS应用程序.

*提示 - 尝试解释,好像你正在和一个8岁的孩子或一个完整的低能儿说话.多谢你们.

iphone xcode objective-c instruments ios

34
推荐指数
1
解决办法
7189
查看次数

为什么Closure Compiler不识别自执行匿名函数中的类型声明?

"Unknown type"通过Closure Compiler运行一个相当大的库时,我收到了很多警告,当我的类型在自动执行的匿名函数中声明时,它们似乎就出现了.这没有什么奇特之处,但是如果我将自执行函数剥离出来,类型声明似乎起作用(至少在这个简单的测试中).

我不确定我的代码注释是否有问题,或者代码中是否存在任何违法行为,但我认为这都是犹太教和模块化API的标准方法.

以下测试代码创建一个命名空间(只是一个普通的旧JS对象)并附加一个枚举(一个对象文字)和一个函数.

var mynamespace = {};
(function (mynamespace) {
    /**
     * Some enum.
     * @enum {number}
     */
    mynamespace.SomeEnum = {
        FOO: 1,
        BAR: 2
    };

    /**
     * Frazzle some type.
     * @param {mynamespace.SomeEnum} qux The type to frazzle.
     * @return {boolean} whether the operation succeeded.
     */
    mynamespace.frazzle = function(qux) {
        return true;
    }
}(mynamespace));

// call it
mynamespace.frazzle(mynamespace.SomeEnum.FOO);
Run Code Online (Sandbox Code Playgroud)

看起来很好,对吗?闭包编译错误:

[jscomp] Compiling 1 file(s) with 37 extern(s)
[jscomp] X:\dev\solclientjs\sdk\tools\jscomptest.js:14: WARNING - Parse error. Unknown type mynamespace.SomeEnum

[jscomp] …
Run Code Online (Sandbox Code Playgroud)

javascript design-patterns google-closure-compiler jsdoc

13
推荐指数
1
解决办法
2664
查看次数

一起使用SQL SELECT和COUNT

我有一个包含以下字段的表:

名称| 类别| 描述

我想选择所有类别并显示如下:

类别| 类别计数

那我该怎么办?

SELECT Category FROM MyTable 
UNION
SELECT COUNT(Category)
Run Code Online (Sandbox Code Playgroud)

但计数显示该行的具体计数?

mysql sql

1
推荐指数
1
解决办法
567
查看次数

LESScss将rgba转换为hex?如何将颜色变量嵌入mixin中?

LESScss是否将所有rgba颜色转换为十六进制值?

我正在尝试创建一个mixin,例如.color,它允许您传入之前定义的颜色变量,我希望它在rgba中.

这不起作用,但这里的想法是:

.bgcolor(@colorvariable,@alpha) {
     background-color: @colorvariable + rgba(0, 0, 0, @alpha);
     }
Run Code Online (Sandbox Code Playgroud)

哪里@colorvariable会是这样,@blue: rgb(17,55,76);或者@green: rgb(125,188,83);

我想定义一堆这些变量,然后就能通过他们到.bgcolor.color混入和更改动态阿尔法透明度.

我觉得这应该是可能的,但我错过了一些东西. - 右现在,我的代码永远只能输出一个十六进制颜色值,几乎不管我input.-如果我通过在1的@alpha值时,输出一个十六进制颜色值.只有@alpha值小于1会强制浏览器显示rgba值.所以这就解决了.

现在 - 如何将rgb和一部分与预定义变量分开传递?

css colors less rgba

19
推荐指数
3
解决办法
2万
查看次数

如何从网址中提取“搜索字词”?

如何从以下网址提取“测试”?

http://www.example.com/index.php?q=test&=Go

我找到了一个提取路径(window.location.pathname)的脚本,但是我找不到或弄清楚如何提取或分割URL。

-本

javascript

2
推荐指数
1
解决办法
1597
查看次数

如果散列中有一个或多个字段,则使用 HashSet 和 Contains 返回 TRUE

我想知道是否可以使用 HashSet 并使方法Contains返回 true 如果字段之一在给定对象的哈希中。

这是我想要的一个例子

static void Main(string[] args)
{
    HashSet<Product> hash = new HashSet<Product>();

    // Since the Id is the same, both products are considered to be the same even if the URI is not the same
    // The opposite is also true.  If the URI is the same, both products are considered to be the same even if the Id is not the same
    Product product1 = new Product("123", "www.test.com/123.html");
    Product product2 = new Product("123", …
Run Code Online (Sandbox Code Playgroud)

c# hashset

1
推荐指数
1
解决办法
8227
查看次数