0

我正在提交一份职位发布表格,并且拥有C#在我的休息 API 中逃脱的技能。所以我对技能进行编码并发送到后端。

"skills":encodeURIComponent(skills)

现在,当我恢复为我正在做的技能decodeURIComponentskills

$scope.skills = decodeURIComponent(skills);

但这不适用于数据数组,当我想获取作业列表时,数据来自数组,我的数组有近 15 个键值,将以某种方式在表中使用。编写一个新数组并将每个值推入数组中,再次将解码技能推向一个大过程。

是否有任何直接解码视图中的值的解决方案,即 html

我试过{{decodeURIComponent(item.skills) }}但没有运气。

样本数据 ::

{
  "json": {
    "response": {
      "statusmessage": "Success",
      "count": 59,
      "data": [
        {
          "employerId": 2,
          "employerEmail": "sumit@infosoftjoin.in",
          "employerName": "SumitKumar",
          "companyName": "Infosoftjoin%20pvt%20ltd.",
          "jobId": 142,
          "jobTitle": "Test%20case%201",
          "jobDescription": "<p>ahdu%29%28@*%29*W%29%28*%29E%26%3D--%3D</p>",
          "link": "http://www.infosoftjoin.in",
          "numberOfPositions": 5,
          "createdTime": "18-May-2018",
          "lastUpdatedTime": "18-May-2018",
          "consumedCredits": 44,
          "location": {
            "city": "North And Middle Andaman",
            "state": "Andaman and Nicobar Islands",
            "country": "India"
          },
          "skills": [
            "C%23.NET"
          ],
          "approved": 1,
          "status": "Approved"
        },
        {
          "employerId": 2,
          "employerEmail": "sumit@infosoftjoin.in",
          "employerName": "SumitKumar",
          "companyName": "Infosoftjoin%20pvt%20ltd.",
          "jobId": 130,
          "jobTitle": "New%20job",
          "jobDescription": "hryuyurfkituo8",
          "link": "http://www.infosoftjoin.in",
          "numberOfPositions": 5,
          "createdTime": "16-May-2018",
          "lastUpdatedTime": "16-May-2018",
          "consumedCredits": 93,
          "location": {
            "city": "Nicobar",
            "state": "Andaman and Nicobar Islands",
            "country": "India"
          },
          "skills": [
            "APACHE TOMCAT"
          ],
          "approved": 1,
          "status": "Approved"
        }

      ]
    }
  }
}
4

1 回答 1

1

encodeURIComponent是一个 JavaScript 内置函数,你不能直接在你的 AngularJs 模板中访问它。将其转换为$scope函数,然后尝试从 AngularJs 模板访问。

我建议您使用相同的过滤器而不是 $scope 函数。

筛选:

app.filter('decodeFilter', function() {
    return function(input) {
        return decodeURIComponent(input);
    };
});

模板:

{{item.skills | decodeFilter}}

如果您仍然希望将其作为 $scope 函数,请尝试以下代码:

控制器:

$scope.decodeComponent=function(value){
    return decodeURIComponent(value);
}

模板:

{{decodeComponent(item.skills)}}

另外,请检查此 plunker以获取带有上述示例的示例场景。

于 2018-05-18T11:42:49.087 回答