如何在没有双引号的情况下将日期值传递给指令?

时间:2017-11-02 09:17:16

标签: date angularjs-directive angularjs-filter

我创建了我的指令,它将'日期变量'传递给它。

问题是,获得的值带有双引号(如图中所示)。 如果我传递一个普通的字符串,这不会发生。

如何修改?

我的初衷是在模板内直接应用过滤器。如:

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles InstallButton.Click

    Dim PCsource As String = "C:\Path\Install.txt"
    Dim Check As String
    Dim strCommand As String = "Antivirus.exe"

    If System.IO.File.Exists(PCsource) = True Then
        Dim Computer As New System.IO.StreamReader(PCsource)
        Do While Computer.Peek() <> -1
            Check = Computer.ReadLine()


        Loop
    End If

End Sub

但它似乎不起作用,我必须使用<p> {{mdate | date: "MMM"}} </p> 函数

修改

这就是我称之为指令的方式:

link

enter image description here

编辑2:

咦。发现我应该使用 <dbd-custom-calendar mdate="{{dateLatest}}"></dbd-custom-calendar> 而不是'=' !!!

enter image description here

0 个答案:

没有答案