尝试用连字符替换消息变量中的所有空格。 例如,来自&#34;这是我的信息&#34; &#34; here-is-my-message-to-be&#34; < / p>
有人可以帮助我
.controller('postNotif',
['$scope', '$http', '$rootScope', function ($scope, $http, $rootScope) {
$rootScope.modal = [];
$rootScope.notification = {
messages: "here is my message to be",
link: timing
};
答案 0 :(得分:1)
使用replace
功能:
message.replace(/\s/g, "-");
答案 1 :(得分:1)
在ur string变量
上使用此方法.replace(/ /g, "-");