Razor标记助手中的AngularJS表达式

时间:2016-11-08 14:40:34

标签: angularjs razor asp.net-core tag-helpers

我尝试在Razor标记助手中使用AngularJS表达式,如下所示:

public static void main(String[] args) {
    String s="the big cat is the best";
    String st="";
    String sen="";
    int l=s.length();
    char ch;
    for(int i=0;i<=l-1;i++)
    {
        ch=s.charAt(i);
        st=st+ch;
        if(st.equalsIgnoreCase("The"))
        {
            sen=sen+" "+st;
            st="";
        }
    }
    System.out.println("The new string is: "+st);
}

但是AngularJS表达式没有扩展。什么是正确的语法?它甚至可能吗?还有其他选择吗?

1 个答案:

答案 0 :(得分:0)

您必须删除标签助手,它将起作用!。

<a href="Foo/Edit/{{myAngularControllerInstance.selectedFooId}}">Edit</a>